function jumpAlert() {
	text = "You are now leaving the National Weather Service Web site.\n\n"
	text += "The NWS provides a link to this external Web page\n"
	text += "because it may contain related information of interest to you.\n"
	text += "This link does not constitute an endorsement by the NWS\n"
	text += "of any information, products or services on this external\n"
	text += "Web site.\n\n"
	text += "You can return to the NWS Web site by using the Back\n"
	text += "button on your Web browser.\n\n"
	text += "Continue?"
//	answer = window.confirm(text);
 	answer = confirm(text);
	return answer;
}
