/**
* Modified for Highslide from http://www.boutell.com/newfaq/creating/printpart.html
*/
hs.printImage = function (el) {
   var exp = hs.expanders[hs.getWrapperKey(el)];
   link = "about:blank";
   var pw = window.open(link, "_new", 'width=800');
   pw.document.open();
   pw.document.write(exp.getPrintPage());
   pw.document.close();
   return false;
};
hs.Expander.prototype.getPrintPage = function() {
   // We break the closing script tag in half to prevent
   // the HTML parser from seeing it as a part of
   // the *main* page.

   return "<html>\n" +
	  "<div align='center'>\n" +
      "<head>\n" +
      "<title>Disneykleurplaten print pagina</title>\n" +
      "<script>\n" +"function step1() {\n" +
      "  setTimeout('step2()', 10);\n" +
      "}\n" +
      "function step2() {\n" +
      "  window.print();\n" +
      "  window.close();\n" +
      "}\n" +
      "</scr" + "ipt>\n" +
      "</head>\n" +
      "<body onLoad='step1()'>\n" +
	  "<img src='" + this.content.src + "'/>\n" +
	  "<p STYLE='text-align: right; font-family: Verdana;'><br />www.disneykleurplaten.nl</p>\n" +
	  "<img STYLE='position:absolute; TOP:915px; LEFT:90px; height='60' border='0' width='468' src='http://www.disneykleurplaten.nl/ads/test/uw_banner_banner.gif'>\n" +
	  "</body>\n" +
	  "</div>\n" +
      "</html>\n";
};