<!--
function CheckForm(strForm) {
	var which=eval("document." + strForm);
	var pass=true;
	if (document.images) {
		for (i=0;i<which.length;i++) {
			var tempobj=which.elements[i];
			//alert(tempobj.name.charAt(tempobj.name.length-1));
			if (tempobj.name.charAt(tempobj.name.length-1)=="*") {
				if (((tempobj.type=="text"||tempobj.type=="textarea")&&
					tempobj.value=='')||(tempobj.type.toString().charAt(0)=="s"&&
					tempobj.selectedIndex==0)) {
					pass=false;
					break;
				         }
			      }
		   }
	}
	if (!pass) {
		var intTemp=tempobj.name.search("_");
		if(intTemp > -1){
			shortFieldName=tempobj.name.slice(0,intTemp).toUpperCase();
		}
		else{
			shortFieldName=tempobj.name.substring(0,60).toUpperCase();
		}
		alert("Voor het veld '"+shortFieldName+"' moet een waarde worden opgegeven.");
		return false;
		}
	else return true;
}

function Popup(strURL, intX, intY, bPrint, bFullscreen)
{
	if(bFullscreen==1){
		var PopupWin = window.open("/popup.asp?link='" + strURL + "'&close=1&print=" + bPrint,"PopupWin2","fullscreen=1,menubar=0,toolbar=0,scrollbars=0,location=0,directories=0,status=0,resizable=0,width=" + intX + ",height=" + intY );
	}
	else {
		var PopupWin = window.open("/popup.asp?link='" + strURL + "'&close=0&print=" + bPrint,"PopupWin2","fullscreen=0,menubar0,toolbar=0,scrollbars=0,location=0,directories=0,status=0,resizable=0,width=" + intX + ",height=" + intY );
	}
}
//-->
