function zoek_button() {
	$("zoek").className="zoek_button";
}

function zoek_button_overstate() {
	$("zoek").className="zoek_button_overstate";
}

function verstuur_button() {
	$("verstuur").className="verstuur_button";
}

function verstuur_button_overstate() {
	$("verstuur").className="verstuur_button_overstate";
}

function clients() {
	$("klant_img").className="klant_img";
}

function clients_overstate() {
	$("klant_img").className="overstate";
}


function change(id, type) {
     ID = document.getElementById(id);
     alert(type);
     if(ID.style.display == "") {
          ID.style.display = "none";
          //alert('bla');
     }
     else {
          ID.style.display = "";
          //alert('bla2');
      }
}

function printDiv(divId) {
  var divToPrint = document.getElementById(divId);
  var newWin = window.open('');
  newWin.document.open();
  newWin.document.write('<html><head><link type=\"text/css\" rel=\"stylesheet\" media=\"all\" href=\"http://www.werkenbijlsg.nl/public/css/stylesheet.css\" /></head><body onload="window.print()">'+divToPrint.innerHTML+'</body></html>');
  newWin.document.close();
}