function openFullScreenWin(url) {
if (document.layers) {
 	windowWidth = screen.width - 9;
	windowHeight = screen.height - 58;
	windowprops = "scrollbars,alwaysRaised,titlebar=0,top=0,left=0,width=" + windowWidth + ",height=" + windowHeight;
	myNewWin = window.open(url, "popupPage", windowprops);
	myNewWin.focus()
}
   else if (document.all) {
  	myNewWin = window.open(url, "popupPage", 'fullscreen=yes,scrollbars=yes');
  	myNewWin.focus()
   }
}