
	var thisUrl	= escape(location.href);
	function emailPagePop(contextPath) {
		var popUrl= contextPath+"/tools/emailPageForm.jsp?url=" + thisUrl;
		popupWin (popUrl, 500, 400);
	}
	function popupWin(url, width, height) {
		if(typeof(width)=="undefined") var width = "500";
		if(typeof(height)=="undefined") var height = "200";
		var sOpts ="menubar=0,toolbar=0,location=0,directories=0,"
		+"status=no,titlebar=no,scrollbars=0,resizable=0,copyhistory=0,"
		+"width=" + width + ",height=" + height + ",alwaysRaised=0,hotkeys=0,screenx=0,"
		+"screeny=0,left=10,top=10";
						
		var oWin = window.open(url,"",sOpts);
		}
