function bookmark(){
var title = 'ewaseet';
var url = 'http://ewaseet.com';
   if (document.all)
     window.external.AddFavorite(url, title);
   else if (window.sidebar)
     window.sidebar.addPanel(title, url, "")
   else if (window.sidebar&&window.sidebar.addPanel)
     window.sidebar.addPanel(title,url,"");
}

function setHome()
  {
    if (document.all)
    {
     document.body.style.behavior='http://ewaseet.com';
     document.body.setHomePage('http://ewaseet.com');

    }
    else if (window.sidebar)
     {
         if(window.netscape)
         {
          try
          {
          netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
          }
       catch(e)
      {
    //alert("this action was aviod by your browser if you want to enable，please enter        about:config in your address line,and change the value of     signed.applets.codebase_principal_support to true”);
}
}
var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components. interfaces.nsIPrefBranch);
prefs.setCharPref('browser.startup.homepage','http://ewaseet.com');
}
}

function redirect(url){
	window.location=url;
}
