	function PopUp(URL,Name,windowWidth,windowHeight)
	{widthHeight = 'height=' + windowHeight + ',width=' + windowWidth + ',resizable=yes,screenX=150,screenY=150';
	newWindow = window.open(URL,Name,widthHeight);
	newWindow.focus()
	}

