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