
function confirmsend(formular,alerttext) {
	var x = window.confirm(alerttext);
	if (x) document.forms[formular].submit();
}

function send(formular) {
	document.forms[formular].submit();
}

function provecheckboxid(checkboxname,confirmtext)
{
	if (document.getElementById(checkboxname).checked){
		
		check = confirm(confirmtext);
		if (check == true){
				document.getElementById(checkboxname).checked = true;
		} else {
				document.getElementById(checkboxname).checked = false;
		}
	}
}

function openPopUp(file,width,height)
{
	window.open(file,"popup","width=" + width + ",height=" + height + ",resizable=yes,location=no,menubar=no,scrollbars=no,toolbar=no,status=no");
}