﻿function mailpage()
{
	mail_str = "mailto:email_address?subject=Fort Drum - " + document.title;
	mail_str += "&body=" + document.title + " - ";
	mail_str += location.href;
	location.href = mail_str;
}

function enterKeyPressed(e, searchText){
    e = e || window.event; 
    var keynum = e.keyCode || e.which;
    if(keynum === 13){
		location.href = '/searchcenter/Pages/Results.aspx?k=' + searchText;
        return false;
    }
}
