function mailThisURL()
{
     var eI = document.getElementById("submitButton");    
     eI.onclick = function() {
        var u = "I thought you would like to come to the Sacramento Children's Home Luxe for Life event on Saturday, August 28, 2010 8PM to midnight. Please join me at this hip and chic event, supporting children and families. Please visit http://www.kidshome.org/luxeforlife for more information. Tell a friend ...";
        var m = "Luxe for Life";
        window.location = "mailto:"+document.eMailer.address.value+"?subject="+m+"&body="+u;
        
     }
     

}

addLoadEvent(mailThisURL);
