function bookmarksite(title, url)
{
	if( window.sidebar && window.sidebar.addPanel ) 
	{
		window.sidebar.addPanel( title, url, '' );
	} 
	else if( window.external && ( navigator.platform == 'Win32' || ( window.ScriptEngine && ScriptEngine().indexOf('InScript') + 1 ) ) ) 
	{
		window.external.AddFavorite( url, title );
	} 
	else if( window.opera && window.print ) 
	{
		return true;
	} 
	else if( document.layers ) 
	{
		window.alert( 'Please click OK then press Ctrl+D to create a bookmark' );
	} 
	else 
	{
		window.alert( 'Please use your browser\'s bookmarking facility to create a bookmark' );
	}
}
