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

