 //Author: Diego Leon
 //June 24 2001 9:10pm
function openImage(PathFoto_p,alt_p,width_p,height_p)
{
 var left=(screen.width-width_p)/2;
 var top=(screen.height-height_p)/2;
 left=left>0?left:0;
 top=top>0?top:0;
 ventanaFoto = window.open("","ArtNexus","height="+height_p+",width="+width_p+",left="+left+",top="+top+",scrollbars=no");
 ventanaFoto.document.open("text/html","replace");
   ventanaFoto.document.writeln("<html><head><title>South Florida Gourmet</title><link rel=\"stylesheet\" href=\"/css/artnexus_rev1.css\" type=\"text/css\" /></head><body leftmargin=\"0\" topmargin=\"0\">");
   ventanaFoto.document.writeln("<table width=\"100%\" border=\"0\"><tr><td valign=\"middle\" align=\"center\">");
   //ventanaFoto.document.writeln("<div style=\"position:absolute; left:0px; top:0px\">");
   ventanaFoto.document.writeln("<img src=\""+PathFoto_p+"\" alt=\""+alt_p+"\" />");
   ventanaFoto.document.writeln("</td></tr></table></body></html>");
 ventanaFoto.document.close();
 ventanaFoto.focus();
}
