// My Account Functions
function updated_password(){
	confirm('Password successfull updated!!!');
	window.location.href='?p=myaccount';
}
function updated_screenshot(){
	confirm('Screenshot successfull Uploaded!!!');
	window.location.href='?p=myaccount';
}


// Vote Panel Functions
function already_voted(){
	confirm('This site is already voted!!!');
	window.location.href='?p=votepanel';	
}
function voteSite(site){
	windows.location=site;
}
function voteForAllSites(URL, COUNT) {
	while(COUNT > 0){ 
		day = new Date();
		id = day.getTime();
		//eval("page" + id + " = window.open(URL[COUNT], '" + id + "', 'toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,width=1024,height=768');");
		window.open(URL[COUNT],id);
	}
}
