function bookmarksite(url,desc){
	var bookmarkurl      = url;
	var bookmarktitle    = desc;
	var nonie            = 'Sorry, only Mozilla Firefox and Internet Explorer support this method to add a bookmark/favourite\n But please feel free to visit the site\'s home page to add a bookmark manually';

	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(bookmarktitle, bookmarkurl,"");
	} else if(window.opera && window.print){
          var elem = document.createElement('a');
          elem.setAttribute('href',bookmarkurl);
          elem.setAttribute('title',bookmarktitle);
          elem.setAttribute('rel','sidebar');
          elem.click();
    } else if(document.all){ // IE Favourites
		window.external.AddFavorite(bookmarkurl,bookmarktitle);
	}else {
		alert(nonie);
	}
}

// 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

var chr = 'CTRL-D';
var agt=navigator.userAgent.toLowerCase();
if(agt.substr(agt.indexOf('opera')+6,1) < 9) chr = 'CTRL-T';/*
if (window.external) document.write('<a href="javascript:window.external.AddFavorite(self.location,document.title)">Add to Favorites sfsdfsdf<\/a>');
else document.write('Press '+chr+' to bookmark this page.');
                  */