<!--
function display(myimage) {
 var html = "<html><head><title>Photo</title><link rel=\"stylesheet\" href=\"/styles/orikadabra_new.css\" type=\"text/css\" />" +
  "</head><body style=\"margin:0;padding:0;\">" +
  "<div class=\"center\" style=\"width:100%;\"><a  href=\"javascript:window.close();\"><img src='" + myimage + "' border=\"0\" name=\"image\" " +
  "onload='window.resizeTo(document.image.width+30,document.image.height+30)' ></a></div>" +
  "</body></html>";
 var popup=window.open('','image','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=1');
 popup.document.open();
 popup.document.write(html);
 //popup.document.focus();
 popup.document.close()
};
//-->
