/**
* Script Taken From:
* http://www.reconn.us/content/view/43/64/ 
*/

function bookmark_us(url, title){

/*Coded by E3pO www.wmclan.net*/
title = document.title;
url = document.location.href;
alerttext = 'Press Control + D to bookmark';
worked = false;
alerted = false;
try{
window.sidebar.addPanel(title, url,"");
worked = true;
}catch(err){if(!worked && !alerted){alert(alerttext);alerted=true;}}
try{
window.external.AddFavorite(url, title);
worked = true;
}catch(err){if(!worked && !alerted){alert(alerttext);alerted=true;}}
try{
window.external.AddFavorite(title, url,"");
worked = true;
}catch(err){if(!worked && !alerted){alert(alerttext);alerted=true;}}

if(!worked && !alerted){
alert(alerttext);
}
}
