<!-- Begin hide

function popUp(image_url, width, height) 
{
   var view_width = parseInt(width);
   var view_height = parseInt(height) + 60;

   var view_width = view_width.toString();
   var view_height =  view_height.toString();

   var look="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=" + view_width + ",height=" + view_height;

   popwin=window.open("","",look);
   popwin.document.open();
   popwin.document.write('<head><title>Close Up</title>');
   popwin.document.write('<link rel="stylesheet" href="./style2.css" type="text/css">');
   popwin.document.write('<meta http-equiv="imagetoolbar" content="no">');
   popwin.document.write('</head>');
   popwin.document.write('<body alink="#00ff00" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" marginheight="0" marginwidth="0">');
   popwin.document.write('<div align="center">');
   popwin.document.write('<img src="'+image_url+'" class="plain"><br><br>');
   popwin.document.write('<form><input type="submit" value="Close" class="submit" onClick=\'self.close()\'></form>');
   popwin.document.write('</div>');
   popwin.document.write('</body>');
   popwin.document.close();

}

// End -->
