function numbersDashesOnly(field, event)
{
var key, keychar;

if (window.event)
	key=window.event.keyCode;
else if (event)
	key= event.which;
else
	return true;
	
keychar = String.fromCharCode(key);

// check for special characters like backspace
// then check for the numbers
if ((key==null) || (key==0) || (key==8) ||
	(key==9) || (key==13) || (key==27) )
	return true;
else if ((("0123456789- ").indexOf(keychar) > -1))
	{
		window.status = "";
		return true;
	}
	else
	{
		window.status = "Field excepts number and dashes only";
		return false;
	}
}
	
function confirm()
{
	alert("Note: Coverage will NOT be bound at this time.\n Please call us with any questions.");
}


//-->