// www.planetleopold.nl
// HTML 4.01 Transitional
// Development : Frits Vos - www.voswebdesign.nl
// Special thanks : Steelooper Computing

// Use complete browser size (_top)

if (self != top) {
top.location.href = self.location.href
}

// Popup Gallery

function popUpgallery(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=1,statusbar=0,menubar=0,resizable=1,width=840,height=650,left = 10,top = 10');");
}

// Popup Gastenboek

function popUpgastenboek(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=1,statusbar=0,menubar=0,resizable=1,width=780,height=600,left = 100,top = 10');");
}

// Expand Script

  function montre(id) {
    if (document.getElementById) {document.getElementById(id).style.display='block';}
    else if (document.all) {document.all[id].style.display='block';}
    else if (document.layers) {document.layers[id].display='block';}
  }
  function cache(id) {
    if (document.getElementById) {document.getElementById(id).style.display='none';}
    else if (document.all) {document.all[id].style.display='none';}
    else if (document.layers) {document.layers[id].display='none';}
  }
