// JavaScript Document



function ismaxlength(obj){
var mlength=obj.getAttribute? parseInt(obj.getAttribute("maxlength")) : ""
if (obj.getAttribute && obj.value.length>mlength)
obj.value=obj.value.substring(0,mlength)
}



function checkit(){
  if (document.getElementById("checkbox_machtiging").checked==true)
	document.getElementById('alternatief').style.display="none";
	else if(document.getElementById("checkbox_machtiging").checked==false)
	document.getElementById('alternatief').style.display="inline";
}

function showIt(element){
document.getElementById(element).style.display="inline";
//document.getElementById("test").style.visibility="visible";
}



function hideIt(element){
document.getElementById(element).style.display="none";	
}


function printen(){
document.getElementById('alternatief').style.display="none";	
document.getElementById('test').style.display="none";

if(document.getElementById("checkbox_machtiging").checked==true)
document.getElementById('navinfo').style.display="none";	

if (document.getElementById("textfield_verzendadres_telefoon").value=="")


alert ("Vul in het formulier a.u.b. uw telefoonnummer in");

else 
print();
}


function hallo(){
if (document.getElementById("checkbox_machtiging").checked==false){
//alert ("U hoeft dit veld alleen in te vullen als u het vakje links heeft aangekruist waarin u accoord gaat met machtiging");
}
}

function hallo2(){
   if (document.getElementById("checkbox_machtiging").checked==false)
   alert ("U hoeft dit veld alleen in te vullen als u het vakje links heeft aangekruist waarin u accoord gaat met machtiging");
}
 var popupje;
function openWindow(url,width,height,scroll)
{
        if (popupje != null) {
                popupje.close();
                popupje = null;
        }
        popupje = window.open(url,"popupje",'toolbar=no,status=no,location=no,menubar=no,scrollbars='+scroll+',width='+width+',height='+height+'');
        popupje.focus();
}  