var IsPopUp = true;
var InMultiline = false;

function DisplayPicture(PicTitle,PicURL,picWidth,picHeight) {
	if (IsPopUp) {
		window.open("DisplayPicture.aspx?PicTitle=" + PicTitle.replace("'","\'") + "&PicURL=" + PicURL,"","width=" + picWidth + ",height=" + picHeight);
		}
}

function ShowLogin(){
	var w = 280, 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=280,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 GeneralKeyPress(KeyCode, Sender){ 
	if( event.keyCode == 13 ){
		if(window.CustomKeyPress) {
			CustomKeyPress(KeyCode, Sender);
			return;
		}
		else {
			if (!InMultiline)
				event.keyCode = 9;
			return;
		}
	}
}
