function fullscreen(){
    	newwindow = window.open("main.html","","scrollbars,width=" + window.screen.width + ",height=" + window.screen.height);
		newwindow.moveTo(0,0);
		newwindow.focus();
}



