/* full screen efect*/
onload = fixWindow;
	function fixWindow() {
		var height = 0, width = 0;
		if (typeof innerHeight == "number") {
			width = innerWidth;
			height = innerHeight;
		} else if (typeof document.body.clientWidth == "number") {
			width = document.body.clientWidth;
			height = document.body.clientHeight;
		} else if (typeof document.documentElement.clientWidth == "number") {
			width = document.documentElement.clientWidth;
			height = document.documentElement.clientHeight;
		}
		if((width < 640) || (height < 480)) {
			moveTo(0, 0)
			resizeTo(screen.width, screen.height)
		}
	}



