function addToFav2()
{
   if (document.all)
      {
      window.external.AddFavorite (window.document.location,window.document.title)
      alert("تم اضافة هذة الصفحة إلى المفضلة بنجاح")
      }
    else
      alert("no thanks")
		
}

function addToFav() {
 title = window.document.title; 
 url = window.document.location;
	
	if (window.sidebar) 
	{ // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} 
	else if( window.external ) 
	{ // IE Favorite
		window.external.AddFavorite( url, title); 
	}
	else if(window.opera && window.print) 
	{ // Opera Hotlist
		return true; 
	}
    
		
		
 }

