
	function postForm(){
		document.forms[0].action = "/do/email/send";
		document.forms[0].submit();
	}

	function openPopUpEmail(){
		var location = new String(window.location);
		location = replace(location, "?",";");
		location = replace(location, "&",",");
		location = replace(location, "#","");
		var url = "/do/email/open?link=" + location;
		var width = "315";
		var height = "205";
		openPopUp (url, "", width, height);
	}
