<!-- 
function showWindow(name) 
{ 
   content = "<html><head><title>close up</title></head>"+
             "<body topmargin=0 leftmargin=0>"+
             "<img src="+name+" alt=Close_up></body></html>";

   pop = window.open("","","scrollbars=0,toolbar=0,width=666,height=484");
   pop.document.open();
   pop.focus();
   pop.document.write(content);
   pop.document.close();
} 
//--> 
