var pageName = document.title;

var urlAddress = window.location.href;

function addtofavo() 
{ 

	if (window.external) 
	{ 
	
		if (window.sidebar) { // Mozilla Firefox Bookmark		
			window.sidebar.addPanel(pageName, urlAddress,"");
		} 
		else if( window.external ) 
		{ // IE Favorite		
			window.external.AddFavorite( urlAddress, pageName); 
		}	
		else if(window.opera && window.print) 
		{ // Opera Hotlist		
			return true; 
		}		
	} 
	else 
	{ 
		alert("Sorry! Your browser doesn't support this function."); 
	} 
}
