
function mailpage()
{
    mail_str = "mailto:?subject=" + escape("Veterans' Affairs - ") + document.title;
    mail_str += "&body=" + escape("The following page ") + document.title;
    mail_str += escape(" is from the Department of Veterans' Affairs web site. To have a look go to, ") + location.href; 
    location.href = mail_str;
}

function IsKeyDownSubmit(event)
{
	if (event !=null)
	{
		var charCode;
		var bKeyModifiers;
		if (browseris.ie)
		{
			charCode=event.keyCode;
			bKeyModifiers=event.altKey || event.ctrlKey;
		}
		else
		{
			charCode=event.which;
			bKeyModifiers=event.modifiers &
						   (event.ALT_MASK | event.CONTROL_MASK);
		}
		if ((charCode==13) && !bKeyModifiers)
			return true;
	}
	return false;
}
