 
	function fullScreen() {
		var sWidth = screen.width;
		var sHeight = screen.height; sWidth -= 10; sHeight -= 100;
		var args = "width=" + sWidth + ",height=" + sHeight + "screenX=0,screenY=0,left=0,top=0, resizable=no";
		var win = window.open("home.html", "gizpropaganda", args)
	}
   