function chkMsg(sEMsg,oObj)
{
	alert(sEMsg);
	oObj.focus(); oObj.select();
	return false;
}

function chkManMsg(oObj)
{
	return chkMsg("U moet nog een verplicht veld invullen!",oObj);
}

function chkEmailMsg(oObj)
{
	return chkMsg("U heeft een ongeldig e-mailadres ingevuld!",oObj);
}

function setInfo(oHidden)
{			
	if (typeof(oHidden) == "undefined" || typeof(window) == "undefined" || typeof(window.navigator) == "undefined" || typeof(window.screen) == "undefined")
		return false;
	
	oHidden.value = (window.navigator.cookieEnabled ? 1 : 0) + ";" + window.screen.width + ";" + window.screen.height;
	return true;
}

