function login() {
	if (frmlogin.txtusername.value=="ixion" && frmlogin.txtpassword.value=="ixion") {
		top.location.replace("where.html");
		return;
	}

	alert("Incorrect Username or Password,\nPlease try again...");
	frmlogin.txtusername.value="";
	frmlogin.txtpassword.value="";
	frmlogin.txtusername.focus();

}