// JavaScript Document
<!-- 
	function mMax(){
		window.moveTo(0,0);
		window.resizeTo(screen.availWidth, screen.availHeight);
	}
	function mOpenLegal(){
		var ww = 700;
		var wh = 350;
		var sx = (screen.availWidth-ww)/2;
		var sy = (screen.availHeight-wh)/2;
		var s = 'modal=yes,location=no,status=no,scrollbars=yes,width=700,height=300,screenX='+sx+',left='+sx+',screenY='+sy+',top='+sy;
		window.open('legal.html', 'legals', s);
	}
	function mOpenCredits(){
		var ww = 700;
		var wh = 350;
		var sx = (screen.availWidth-ww)/2;
		var sy = (screen.availHeight-wh)/2;
		var s = 'modal=yes,location=no,status=no,scrollbars=yes,width=700,height=300,screenX='+sx+',left='+sx+',screenY='+sy+',top='+sy;
		window.open('credits.html', 'credits', s);
	}
// -->