var InMultiline = false;

function GeneralKeyPress(KeyCode, Sender){ 
	if( event.keyCode == 13 ){
		if(Sender.id == "ucRightBox_ucNieuwsbrief_tbxEmail")
			event.keyCode = 9;
		else if(Sender.id == "ucRightBox_ucNieuwsbrief_tbxVoornaam")
			event.keyCode = 9;
		else if(Sender.id == "ucHeader_txtZoek")
		{	
			ucHeader_lbnZoek.click();
			event.returnValue = false;
			return;
		}
		else if(window.CustomKeyPress)
		{
			CustomKeyPress(KeyCode, Sender);
			return;
		}
		else {
			if (!InMultiline)
				event.keyCode = 9;
			return;
		}
	}
}

function ShowLogin(){
	var w = 250, h = 360;

	if (document.all) {
	/* the following is only available after onLoad */
	w = document.body.clientWidth;
	h = document.body.clientHeight;
	}
	else if (document.layers) {
	w = window.innerWidth;
	h = window.innerHeight;
	}

	var popW = 300, popH = 200;

	var leftPos = (w-popW)/2, topPos = (h-popH)/2;

	settings="width=250,height=100,top=" + topPos + ",left=" + leftPos + ",location=no,directories=no,menubar=no,toolbar=no,status=no,scrollbars=no,resizable=no,dependent=yes";
	window.open("login.aspx","",settings);	
}

function DisplayPicture(PicTitle,PicURL,picWidth,picHeight) {
			window.open("DisplayPicture.aspx?PicTitle=" + PicTitle.replace("'","\'") + "&PicURL=" + PicURL,"","width=" + picWidth + ",height=" + picHeight);
		}
		