	function popUp(URL, width, height) {
		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,status=0,menubar=0,resizable=1,width="+width+",height="+height+",left = 150,top = 30');");
	}
	function popUpStatus(URL, width, height) {
		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,status=1,menubar=0,resizable=1,width="+width+",height="+height+",left = 150,top = 30');");
	}
	function changePage(newLoc){
		nextPage = newLoc.options[newLoc.selectedIndex].value
		if (nextPage != ""){
			if(nextPage != 'mystatus.php'){
				document.location.href = nextPage;
			}else{
				popUp('http://status.secure-server-hosting.com/', '480', '500');
			}
		}
	}
	function quickJump(drop) {
		var pagename = drop.options[drop.selectedIndex].value;		
		if (pagename != "")
			if (pagename.indexOf("http") != -1)
				window.location = pagename;
			else
				window.location = "http://www.securehosting.com/"+pagename;
	}
