
function isValidReaction() 
{
	var strErrorMsg = "";
	
	if (document.reactieformulier.strTitle.value == "") {
		strErrorMsg += "> De titel \n";
	}
	
	if (document.reactieformulier.strAuthor.value == "") {
		strErrorMsg += "> Uw naam \n";
	}
	
	if (document.reactieformulier.strBody.value.length < 5) {
		strErrorMsg += "> Uw bericht \n";
	}
	
	if (strErrorMsg != "") {
		alert("De volgende velden zijn niet (goed) ingevuld: \n"+ strErrorMsg);
		return false;
	} else {
		return true;
	}
}

function openPopUp(strUrl, intWidth, intHeight)
{
	window.open(strUrl, "popup", "toolbar=0,menubar=1,scrollbars=0,resizable=0,width="+ intWidth +",height="+ intHeight);
}
