function palWindow(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, 'PAL', 'toolbar=0,scrollbars=1,location=1,statusbar=0,menubar=0,resizable=1,width=616,height="+screen.availHeight+",left = 212,top = 84');");
}

function attemptLogin(URL) {
	palWindow(URL)
	var form = document.getElementById("login_form");
	form.submit();
	
}