
function addB(){
  title = document.title; 
	url = window.location.href;
  if(window.sidebar){ // Firefox
    window.sidebar.addPanel(title, url,'');
  }else if(window.opera){ //Opera
    var a = document.createElement("A");
    a.rel = "sidebar";
    a.target = "_search";
    a.title = title;
    a.href = url;
    a.click();
  } else if(document.all){ //IE
    window.external.AddFavorite(url, title);
  }
}


function pp() {
window.print();  
}

function sTF(){
				var loc=document.location.href;
				var message="Hi. I think this might be interesting";
				var message2="I found this url... i think it might be interesting. "
				window.location="mailto:?subject="+message+"&body="+message2+loc;
}
