///********popup script hacked out by newman :: phreshnet.com******* ///
function OpenVignette(image_url) {
  var settings = "width=300,height=425,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no";
  var vignette = window.open("", "Vignette", settings);
  vignette.document.write("<html><head><title>Vignette</title>");
  vignette.document.write("<style>");
  vignette.document.write("a.nav {color:#1D2845; font-size:10pt;font-family:arial;font-weight:bold;}");
  vignette.document.write("a.nav:hover{color :#A50606;text-decoration:none;font family : arial; font-size:10pt;font-weight:bold;}");
  vignette.document.write("</style>");
  vignette.document.write("<body><img src='" + image_url + "' width='275' height='375' border='0'><br>");
  vignette.document.write("<center><a class='nav' href='javascript:window.close()'>Close Window</a></center></body></html>");

  return false;
}

