	var title = "Brooks Forgings";
	var url = "http://www.brooksgrouplimited.com";


function bookmarksite(){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}


function addBookmark(title,url) {
if (window.sidebar) { 
window.sidebar.addPanel(title, url,""); 
} else if( document.all ) {
window.external.AddFavorite( url, title);
} else if( window.opera && window.print ) {
return true;
}
}


function MailPage() 
{ 
var mail_str; 

mail_str = "?subject=" + "Brooks Website"; 

mail_str += "&body=Hi,%0D%0AJust came across this website page and thought you might like to see it:" + document.title; 
mail_str += "%0D%0A" + location.href; 
mail_str += "%0D%0A%0D%0A%0D%0A"; 

location.href = "mailto:" + mail_str; 

} 

