  function ShowTicket(tfi,tte,pwi,phe)
  {
    var w = window.open('about:blank', Math.floor(Math.random()*10000), 'width='+(pwi+20)+',height='+(phe+70)+',noscrollbars');
    var html = '<HTML><head><title>'+(tte).replace('<br>',', ')+'</title></head><BODY BACKGROUND="tour.jpg" BGCOLOR="#dddddd" TEXT="#000000"><FORM><INPUT TYPE="button" VALUE="Close" ONCLICK="window.close()" width=180><\/FORM><img src="'+tfi+'" border=0><\/BODY><\/HTML>';
    w.document.open();
    w.document.write(html);
    w.document.close();
  }

  function ticket(tfi,tte,bwi,bhe,pwi,phe)
  {
    document.writeln("<td colspan="+bwi+" rowspan="+bhe+" align=center valign=center><a href=\"javascript:ShowTicket(\'"+tfi+"\',\'"+tte+"\',"+pwi+","+phe+")\" onMouseOver=\"window.status='"+(tte).replace('<br>',', ')+"';return true\" onMouseOut=\"window.status=' ';return true\"><img src="+tfi+" width="+pwi/2+" height="+phe/2+" border=0></a><p>"+tte+"</td>");
  }

  function emptybox(wi,he)
  {
    document.writeln("<td colspan="+wi+" rowspan="+he+">&nbsp;</td>");
  }

