function openFullScreen(url){
	newwin=window.open(url,'','scrollbars=yes','resizable=no','menubar=no')
	newwin.moveTo(0,0);
	newwin.resizeTo(screen.width,screen.height)
	//newwin.resizeTo(screen.availWidth,screen.availHeight); 
}
function MM_openBrWindow(theURL, lenom, prop) { //v2.0
  window.open(theURL, lenom, prop);
}

	function openPrintableScreen(url){
		var fullWindow = "width="+screen.width+",height="+screen.height+",menubar,resizable,left=0,top=0,screenX=0,screenY=0,scrollbars,titlebar,status";
		newwin = window.open(url,'',fullWindow);
	}