function inzien(oid) {
 var Lyr;
 if ((navigator.appName == "Netscape") && (navigator.userAgent.indexOf("Gecko") == -1)) {
  if (document[oid].visibility != "show") {
   document[oid].visibility="show";
  } else {
   document[oid].visibility="hide";
  }
 } else {
  Lyr = document.getElementById(oid);
  if (Lyr.className == 'tijden') {
   Lyr.className = 'tijdenshow';
  } else {
   Lyr.className = 'tijden';
  }
 }
}

function kaart(w, tid, datum, tijd, fid) {
 url = "belbiostransactie.php?movieID="+fid+"&cinemaID="+tid+"&performanceDate="+datum+"&performanceTime="+tijd+"&delivery=email,SMS";
 if (w=="R") {
//  url+="&service=reservationConfirm";
  url+="&service=anonymousAndReservationConfirm";
  belbios_reserveer(url,'');
 }
 if (w=="K") {
  url+="&service=selling";
  belbios_koop(url,'');
 }
}

