// JavaScript Document
			
        function openWindow(pict_url,w,h) 
        { 
      	winStats='toolbar=no,location=no,directories=no,menubar=no,' 
        winStats+='scrollbars=no,width='+w+',height='+h 
        floater=window.open("","",winStats)     
		floater.document.writeln ("<html>") 
        floater.document.writeln ("<head>") 
		floater.document.writeln ("<script language=\"javascript\">") 
        floater.document.writeln ("function closeMe()") 
        floater.document.writeln ("{") 
        floater.document.writeln ("self.close();") 
        floater.document.writeln ("}") 
        floater.document.writeln ("</script\>") 
		floater.document.writeln ("<title>My Mini</title>") 
		floater.document.writeln ("</head>") 
        floater.document.writeln ("<body LEFTMARGIN=\"0\" RIGHTMARGIN=\"0\" MARGINWIDTH=\"0\" MARGINHEIGHT=\"0\" TOPMARGIN=\"0\" bgcolor=\"#ffffff\">") 
        floater.document.writeln ("<table cellspacing=\"0\" cellpadding=\"0\" width=\""+w+"\" height=\""+h+"\" border=\"0\"><tr><td valign=\"top\" align=\"left\" ><a href=\"javascript:closeMe()\"><img src=\"" + pict_url + "\" border=\"0\"></a></td></tr>") 
        floater.document.writeln ("</td></tr></table></body></html>") 
        }   
		
