	function popUp(URL) {
		var width;
		var height;
		width = screen.width-10;
		height = screen.height-90;
		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,status=1,menubar=0,resizable=1,width=" + width + ",height=" + height +",left = 0,top = 0');");
	}
	// End -->
	
	function surveyURL(){
		var str;
		address = location.href;
		prot = location.protocol;
		domain = location.hostname;
		prt = location.port;
		path = location.pathname;
		anchor = location.hash;
		search = location.search;
		//str = prot + "//" + domain + prt + path + anchor + search";
		str = location.href
		return str;
	}
	
	function surveyNoMenuURL(){
		var str;
		str = location.href+"&disable=True";
		if (document.frmStartPage.ReEnterID) {
			if (document.frmStartPage.ReEnterID.value > 0)
			{
				str = str+ "&reenter=" + document.frmStartPage.ReEnterID.value;
			}
		}
		return str;
	}