<!-- 
//Adds a bookmark to your web browser
 function CreateBookmarkLink() {

//Grabs the url of the page you're on when you click the add bookmark link
var BookmarkURL = window.location.href

//Grabs the title of the web page you're on for when you click the add bookmark link
var BookmarkTitle = document.title

// If the browser is Internet Explorer

if (document.all)
{
        // Add to Favorites (Internet Explorer)
        window.external.AddFavorite(BookmarkURL,BookmarkTitle)
}

else

{
        // Add to Bookmarks (Mozilla Firefox)
        window.sidebar.addPanel(BookmarkTitle, BookmarkURL, '');
}

}

//Opens up an email window to send the page to a friend. Auto fills in the name of the page you're on and the link.
function SendEmail() {

var EmailURL = window.location.href
var EmailTitle = document.title

//var daReferrer = document.referrer; 
var email = ""; 
//var errorMsg = "here here here is the error error error error"; 
var subject = "Check out this link"; 
var body_message = "Here's a link I wanted to share with you. " + EmailURL; 

var mailto_link = 'mailto:'+email+'?subject='+subject+'&body='+body_message; 

win = window.open(mailto_link,'emailWindow'); 
if (win && win.open &&!win.closed) win.close(); 
} 


//-->