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