function ReferEMail()
{
    var oEl;
    var strHREF;
    
    strHREF = "mailto:&subject=Referred products from scrapandtell.com&body=" + escape("I thought you might like to see the scrapbooking supplies at this site:\n\n" + document.location.href);
    
//    window.alert(strHREF);
    
    oEl = document.getElementById("lnkMail");
    
    oEl.href = strHREF;
}

