// JavaScript Document

function goThere(vURL){
	if(confirm("DIT ITEM VERWIJDEREN?")){
		window.location=vURL;
	}
}

function alertmsg(messg){
	alert(messg);
}

function openvenster(urllink,naamvenster,breed,hoog)
{
	window.open(urllink,naamvenster,"toolbar=no, location=no, directories=no, hotkeys=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width="+breed+", height="+hoog+"");
}

function getStringLen(){
	var msgString =	document.getElementById("frmNameId").value
	var msgStringLen = msgString.length
	if(msgStringLen == 240){
		msgStringLen = "<strong style=\"color:#d43c15;\">" + msgStringLen + "</strong>"
		document.getElementById("strLenResult").innerHTML = msgStringLen
	}else{
		document.getElementById("strLenResult").innerHTML = msgStringLen
	}
	return true
}