function addBookmark(title, url){
  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 setHome() {
   document.body.style.behavior='url(#default#homepage)';
   document.body.setHomePage(window.location.href);
}
 /**
 * @access Tufan
 * Artık Cacheten okuyor.
 */
 /**
    function getMarquee(content) {
	    document.write('<marquee scrollamount="3" style="color:#F87903;font-weight:bold;font-size:14px;height:25px">' + content + '</marquee>');
}
*/
