// JavaScript Document window.onerror = stopError function stopError() { // return true; } function Show_afbeelding(photo_id,gallery_id){ var leftPos = (screen.availWidth-640) / 2; var topPos = (screen.availHeight-480) / 2; popupWin = window.open('','','width=640,height=480, status=no,scrollbars=auto,resizable=yes,titlebar=0,top=' + topPos + ',left=' + leftPos); popupWin.location='photo_popup.php?photo_id='+photo_id+'&gallery_id='+gallery_id; } function Show_nieuwsphoto(afbeelding){ var leftPos = (screen.availWidth-640) / 2; var topPos = (screen.availHeight-480) / 2; popupWin = window.open('','','width=640,height=480, status=no,scrollbars=auto,resizable=yes,titlebar=0,top=' + topPos + ',left=' + leftPos); popupWin.location='photo_popup.php?afbeelding='+afbeelding; } function Show_nieuwsbrief(nieuwsbrief_id){ var leftPos = (screen.availWidth-640) / 2; var topPos = (screen.availHeight-480) / 2; popupWin = window.open('','','width=640,height=480, status=no,scrollbars=yes,resizable=yes,titlebar=0,top=' + topPos + ',left=' + leftPos); popupWin.location = 'nieuwsbrief/view.php?nieuwsbrief_id='+nieuwsbrief_id; } function Popup_window(url){ var leftPos = (screen.availWidth-640) / 2; var topPos = (screen.availHeight-480) / 2; popupWin = window.open(url,'','width=640,height=480, status=no,scrollbars=yes,resizable=yes,titlebar=0,top=' + topPos + ',left=' + leftPos); } function isValidEmail(str) { var filter = /^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i if (filter.test(str)){ return true; } else { return false; } } function isValidLink(str) { var filter = /^(file|http):\/\/\S+\.([a-z]{2,4})$/i if (filter.test(str)){ return true; } else { return false; } } function doMail(which) { //Init var valid = "yes"; //Check if(which=="mailinglist_aanmelden"){ if(document.getElementById('email').value=="" || !isValidEmail(document.getElementById('email').value)){ valid = 'no'; } } else if(which=="contact") { if (document.getElementById('naam').value=='') var valid = 'no'; if (document.getElementById('email').value=='') var valid = 'no'; if (document.getElementById('opmerkingen').value=='') var valid = 'no'; } //If ok, then submit if (valid == "yes") { document.home_form.action="index.php?pagina_id=&show_mail=yes&do_mail=yes&which="+which; document.home_form.submit(document.home_form); } else { alert("U dient de vereiste velden in te vullen."); } } function isDefined(obj){ varToStr=eval("'"+obj+"'"); if(varToStr=="undefined") return false; else return true; } function doPrint(page){ text = "Print deze pagina\n"; text += document.getElementById(page).innerHTML; text = text.replace("doPrint('"+page+"')","print()"); text = text.replace("popupMail()",""); text += "
Venster sluiten
"; text += ""; printWin = window.open('','','width=600,height=420,scrollbars=yes,resizable=yes,titlebar=0'); printWin.document.write(text) printWin.document.close() printWin.print() } function popupMail() { mailWin = window.open('email_popup.php','','width=300,height=160,scrollbars=yes,resizable=yes,titlebar=0'); }