
function toggleDiv(idname) {
  var e = document.getElementById(idname);
  if(e.style.display == 'block') {
    e.style.display = 'none';
  } else {
    e.style.display = 'block';
  }  
}

function print(url,title) {
	var a = window.open(url,'TitelvanWebsite','scrollbars=yes,width=500,height=350');
	a.document.open("text/html");
	a.document.write('<html><head><title>'+title+'</title></head>');
	a.document.write('<body style="background-image:none;background-color:#FFFFFF;">');
	a.document.write(document.getElementById('printdiv').innerHTML);
	a.document.write('</body></html>');
	a.document.close();
	a.print();
}

