// Bookmark this page
// copyright 12th February 2005, 21st June 2006
// Stephen Chapman, http://javascript.about.com
// Updated for Opera 9
// You have permission to copy and use this javascript provided that
// the copyright notice is included with the script

function createFavLink(lang,str1,str2) {
	/*var chr = 'CTRL+D';
	var agt=navigator.userAgent.toLowerCase();
	if(agt.substr(agt.indexOf('opera')+6,1) < 9) chr = 'CTRL+T';
	
	var string=str1 + ' ' +chr +' ' + str2;
	var res;
	
//	if (window.sidebar) { // Mozilla Firefox Bookmark
//		res='<a href="javascript:window.sidebar.addPanel(self.location,document.title,\'\')">';
//	} else
	if (window.external) { // IE Favorite
		res='<a href="javascript:window.external.AddFavorite(self.location,document.title)">';
	} else {
		res='<a href="javascript:alert(string)">';
	} 
	return res +'<img src="images/' + lang +'/btn_bookmark.jpg" alt="'+ string + '" /><\/a>';
	*/
	return '<a class="addthis_button" href="http://www.addthis.com/bookmark.php?v=250&amp;pub=xa-4ab38d4a2463210e"><img src="http://s7.addthis.com/static/btn/sm-bookmark-en.gif" width="83" height="16" alt="Bookmark and Share" style="border:0"/></a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js?pub=xa-4ab38d4a2463210e"></script>';
}
                  