
function display(PopupImage) {
 html = "<html>\n<head>\n<title>Ônibus VW Neobus</title>\n</head>\n" +
  "<body bgcolor=\"#F4F4F4\" topmargin=\"0\" leftmargin=\"0\" rightmargin=\"0\" bottommargin=\"0\">\n<div align=center>\n" +
  "<a href='javascript:self.close();'><img src='" + PopupImage + "' border=0  name=image vspace='0'" +
  "onload='window.resizeTo(document.image.width+10,document.image.height+28)'></a>\n"
  "</div>\n" +
  "</body>\n</html>\n";

 popup=window.open
   ('','_blank','width=300,height=300,toolbar=0,location=0,directories=0,menuBar=0,scrollbars=no,resizable=0');
 popup.document.open();
 popup.document.write(html);
 popup.document.close()
 };