function bookmarkLink(url, title) {
if (window.sidebar)//ff
{ window.sidebar.addPanel(title, url,'');} 
else if( window.external)//ie
{ window.external.AddFavorite( url, title); }
else if(window.opera && window.print)//opera
{return true;}
}
function addslashes(str) {
str=str.replace(/\'/g,'\\\'');
return str;
}
function bookmark(url, title, label, style)
{
if (window.external) {
document.write('<a href="javascript:bookmarkLink(\''+url+'\',\''+addslashes(title)+'\')");" class="'+style+'">'+label+'</a>'); 
} else  if (window.sidebar) {
document.write('<a href="javascript:bookmarkLink(\''+url+'\',\''+addslashes(title)+'\')");" class="'+style+'">'+label+'</a>'); 
} else if (window.opera && window.print) {	
document.write('<a href="javascript:bookmarkLink(\''+url+'\',\''+addslashes(title)+'\')");" class="'+style+'">'+label+'</a>');
}
}