	function addBookmark(title) {
	 var url=parent.location.href;
	 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 setHomePage(){
	var url=location.href;
  document.body.style.behavior='url(#default#homepage)';
  document.body.setHomePage(url);
}