function setBookmark(url,str){
	if (str=='') {
		str=url;
	}
	if (document.all) {
		window.external.AddFavorite(url,str);
	} else {
		alert('Press CTRL and D to add a bookmark to:\n"'+url+'".');
	}
}

function mailpage()
	{
	mail_str = "mailto:?subject=Check out this information about DOXhosting.com.";
	mail_str += "&body=I found some information on DOXhosting.com that I thought was worth sharing.";
	mail_str += " Check it out here:  " + location.href + "."; 
	location.href = mail_str;
	//Syntax for the link: <a href="javascript:mailpage()">Email This Page</a>
	}