

function showPopup(pageToLoad, winName) {
	var xposition = 100;
	var yposition = 100;
	var width = 600;
	var height = 450;
	args = "width=" + width + "," + "height=" + height + "," + "location=1," + "menubar=0," + "resizable=1," + "scrollbars=0," + "status=1," + "titlebar=0," + "toolbar=0," + "hotkeys=0," + "screenx=" + xposition + "," + "screeny=" + yposition + "," + "left=" + xposition + "," + "top=" + yposition;
	var new_window = window.open(pageToLoad ,winName, args);
}


function CheckKey()
{
	if((event.which ? event.which : event.keyCode) == 13)
	 {
	 event.returnValue = false;
	 event.cancel = true; 
	 }
}
