function amostra (wid,hei,foto)
{      
	   var new_win;
			
       new_win = window.open("","","menubar=no,status=no, resizable=0,top=5, left=5 ,width=" + wid + " ,height=" + hei);
       new_win.document.write( "<html>");
       new_win.document.write( "<head>");
	   new_win.document.write( "<TITLE>La Perle - Beira Mar</TITLE> </head>");
       new_win.document.write( "<body bgcolor='#F8F2E9' bottommargin='0' topmargin='0'  leftmargin='0'>");
	   
       new_win.document.write( "<center><img  style=cursor:'hand' border='0' name='img1' id='img1' src='" + foto + "' alt='Pressione na foto para fechar'");
	   new_win.document.write( "onclick='javascript:window.close()'></center>" ) ;
       new_win.document.write( "</body>");
   	   new_win.document.write( "</html>");
	
}