﻿function eSubmitForm(frmName)
{
    //alert(frmName);
    //var frm = document.getElementById(frmName);
    alert(frm);
    alert(document.forms[0].id);
    //frm.submit();
}


// this is the function is called when the body is loaded
function masterPageOnLoad()
{
    
	// if inner page has the page on load method
	if (window.innerPageOnLoad) {
        	innerPageOnLoad();
	    }
	    
}

// this function is used to open the window for email in compose mode using the default mail utility
function sendE(e) {
    var d= "hbmeu";
    var at = "&#64;";
    var f = "ae";

    window.open ("&#109;" + "&#97;" + "&#105;" + "&#108;"+ "&#116;" + "&#111;" + ":" + e + at + d + "." + f);
}
