//      alert(window.parent.main.name);                 // frame naam
//      alert(window.parent.main.location.pathname;     // pagina naam als string

// print
function printWindow(){
   bV = parseInt(navigator.appVersion)
   if (bV >= 4) window.print()
}

function printWindow2(){
    window.parent.main.focus();
    window.print();  
}


// reload
function hardReload() { location.reload() }

// update

Update = new Date(document.lastModified)

theMonth = Update.getMonth() + 1
theHour = Update.getHours()
theDate = Update.getDate()

theYear = Update.getYear()

if (theYear <2000) theYear = theYear + 1900

MyMin = Update.getMinutes() 
if (MyMin < 10) MyMin="0" + MyMin
theMinute=MyMin
timestamp= theDate  + "-" + theMonth + "-" + theYear + " / " + theHour  + ":" + theMinute  
TheMessageK= "Ontworpen door Ko    " + theDate  + "-" + theMonth + "-" + theYear + " / " + theHour  + ":" + theMinute  
TheMessage=  "Ontworpen door Ko    " + theDate  + "-" + theMonth + "-" + theYear + " / " + theHour  + ":" + theMinute  
TheMessageE= "Ontworpen door Erna  " + theDate  + "-" + theMonth + "-" + theYear + " / " + theHour  + ":" + theMinute  

moddatum="bijgewerkt op " + theDate + "-" + theMonth + "-2006 " + theHour  + ":" + theMinute  

