function sendemail()
{
var emstr="mailto:webmaster@casinosherpa.com?Subject=link+inquiry+%0d%0a&";
var msg ="lLink+exchange+for+%23OurPage%23%0d%0a%0d%0aI+want+to+exchange+link+with+your+page%3a+%23OurPage%23%0d%0a%0d%0amy+link+to+exchange+%3a+%23exLink%23%2c+%23exText%23+%2c%22%23exDesc%23%22+in+your+page%0d%0a%0d%0amy+pages+for+hosting+%3a%0d%0a%0d%0a%23HostPage1%23%09%0d%0a%23PR1%23%0d%0a%23HostPage2%23%09%0d%0a%23PR2%23%0d%0a%23HostPage3%23%0d%0a%23PR3%23%0d%0a%23MoreHost%23%0d%0a%0d%0a%23Comment%23%0d%0a%0d%0acontact%3a%23Contact%23%0d%0aemail%3a%23Aemail%23%09";
msg = msg.replace(/%23exLink%23/g,document.frmemail.exLink.value);
msg = msg.replace(/%23exText%23/g,document.frmemail.exText.value);
msg = msg.replace(/%23exDesc%23/g,document.frmemail.exDesc.value);
msg = msg.replace(/%23Contact%23/g,document.frmemail.Contact.value);
msg = msg.replace(/%23OurPage%23/g,window.opener.location.href);	
msg = msg.replace(/%23HostPage1%23/g,document.frmemail.HostPage1.value);
msg = msg.replace(/%23PR1%23/g,document.frmemail.PR1.value);
msg = msg.replace(/%23HostPage2%23/g,document.frmemail.HostPage2.value);	
msg = msg.replace(/%23PR2%23/g,document.frmemail.PR2.value); 
msg = msg.replace(/%23HostPage3%23/g,document.frmemail.HostPage3.value);
msg = msg.replace(/%23PR3%23/g,document.frmemail.PR3.value); 
msg = msg.replace(/%23MoreHost%23/g,document.frmemail.MoreHost.value);
msg = msg.replace(/%23Comment%23/g,document.frmemail.Comment.value);
msg = msg.replace(/%23Aemail%23/g,document.frmemail.Aemail.value);
msg = msg.replace(/\+/g," ");
emstr = emstr+"Body="+msg;
document.location=emstr;
}
