function createBookmark(obj, title, url)
{
if (window.sidebar) 
	{
		window.sidebar.addPanel(title, url,'');
		
	}
else if( window.external ) 
	{ 
		window.external.AddFavorite( url, title);
		
	}
else if(window.opera && window.print)
	{ 
	 //Opera Hotlist
	alert('please right click and book mark');
	}
else 
{
 alert('please use your standard book marking functionality');
}
	
}