// JavaScript Document
function popUp(picLnk,x,y) { 


 newWindow= window.open('','','scrollbars=no,width='+x+',height='+y);
 newWindow.document.write("<html><head><title>Magrathea3D</title><body bgcolor='#000000' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0' onBlur='self.close()'>")
 newWindow.document.write("<img src="+picLnk+">")
 newWindow.document.write("</body></head></html>")
}


