function ShowProduct(ProductId,Jaar) {
 top.topbar.ProductWindow=window.open('','ShowProduct','width=165,height=260,resizable=1');
 if (top.topbar.ProductWindow){
  with (top.topbar.ProductWindow.document) {
   open("text/html","replace");
   write("<HTML><HEAD><TITLE>Product "+ProductId+"</TITLE></HEAD>");
   write("<BODY>");
   write("<FONT size=2 face=\"Arial, Helvetica, sans-serif\">");
   write("<CENTER><IMG SRC=\"/comics/picture/"+ProductId+".jpg\"></CENTER><BR>");
   write("<CENTER>"+Jaar+"</CENTER>");
   write("</FONT>");
   write("</BODY></HTML>");
   close();
  }
 top.topbar.ProductWindow.focus();
 }
}
function ShowRef(Ref) {
 top.topbar.RefWindow=window.open('','ShowRef','width=500,height=340,scrollbars=1,resizable=1');
 top.topbar.RefWindow.location.href = Ref;
 top.topbar.RefWindow.focus();
}
