// Fit Win to a minimum size
function fitToWin() {
		
	if ((screen.width >= 1200) && (screen.height >= 900))
	{
		window.resizeTo(1150, 800);
	}	
}
