// JavaScript Document

function openWin (tWin) {
	tURL = "win_"+tWin+".htm";
	tHeight = 450;
	tWidth = 558;
	topPos = (screen.height/2)-(tHeight/2);
	leftPos = (screen.width/2)-(tWidth/2);
	settings = 'width='+tWidth+',height='+tHeight+',top='+topPos+',left='+leftPos+',location=no,directories=no,menubar=no,toolbar=no,status=yes,scrollbars=yes,resizable=no,dependent=no';
	win = window.open(tURL, "", settings);
	win.focus();
	//alert("Open Window: " + tWin);
}

function login () {
	document.location = "login.php";
	//alert("Login");
}