// JavaScript Document
<!-- Begin
var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}




//-->



<!--

 
function check()
{
  var checked=true;
  var pattern=/.*\@.*\..*/;
  		
       if (checked)
	  {
	    if (document.sendform.contactpersoon.value=="")
        {
		  document.sendform.contactpersoon.focus();
		  document.sendform.contactpersoon.select();
          alert ("Vul a.u.b. uw naam in.");
          checked=false;
        }
	  }
	  
	  if (checked)
	  {
	    if ((pattern.test(document.sendform.email.value))==false)
        {
		  document.sendform.email.focus();
		  document.sendform.email.select();
          alert ("Vul a.u.b. een geldig e-mailadres in.");
          checked=false;
        }
	  }

       if (checked)
	  {
	    if (document.sendform.email.value=="")
        {
		  document.sendform.email.focus();
		  document.sendform.email.select();
          alert ("Vul a.u.b. een geldig e-mailadres in.");
          checked=false;
        }
	  }
        
		if (checked)
  {
    document.sendform.method="POST";
    document.sendform.action="http://www.unicumid.com/form/form_ne.php";
	document.sendform.submit;
  }
  return checked;
}

function MM_popupMsg(msg) { //v1.0
  alert(msg);
}
//-->

