function HandleAskNationwideKey(evt)
{
var theKey
var end 

	if(navigator.appName == "Netscape")
	{
		theKey = evt.which;
	}
	else
	{
		theKey = window.event.keyCode;
	}
	if(theKey == 13)
	{
		document.askbox.submit();
	}
}