function Account() {
	var Form = document.forms['myaccountform'];
	if(Form.email.value == "Enter Email Address")
		Form.email.value = "";
	else
		Form.email.value = "Enter Email Address";
}

function GetHelp() {
	var d = document.forms['help'].helptopic.options[document.forms['help'].helptopic.selectedIndex].value;
	if(d) location.href = d;
}