
				function popup(html) 
				{
				 params  = 'width='+screen.width;
				 params += ', height='+screen.height;
				 params += ', top=0, left=0'
				 params += ', scrollbars=yes'
			     params += ', menubar=yes' 
				 params += ', fullscreen=yes';
				 newwin=window.open('','Metrob', params);
				 tmpHTML = newwin.document
				 tmpHTML.write("<HTML>")
				 tmpHTML.write("<TITLE>Metrob</TITLE>")
				 tmpHTML.write("<BODY>")
				 tmpHTML.write(html)
				 tmpHTML.write("</BODY>")
				 tmpHTML.write("</HTML>")
				 tmpHTML.close()
				this.name="main"
				 if (window.focus) {newwin.focus()}
				 return false;
				}

