/*function addToFavourites(theName, theUrl){
  if (window.external && (!document.createTextNode || (typeof(window.external.AddFavorite)=='unknown'))){
    window.external.AddFavorite(theUrl, theName);
  } else if (window.sidebar) {
    window.sidebar.addPanel(theName, theUrl,"");
  }
}*/
// 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 = 'ALT-D';
var agt=navigator.userAgent.toLowerCase();
if(agt.substr(agt.indexOf('opera')+6,1) < 9) chr = 'CTRL-T';

if (window.external && (!document.createTextNode || (typeof(window.external.AddFavorite)=='unknown'))){ 
	document.write('<a href="javascript:window.external.AddFavorite(self.location,document.title)">Add to Favorites<\/a>')
} else if (window.sidebar) {
   document.write('<a href="javascript:window.sidebar.addPanel(document.title,self.location,\'\')">Add to Favorites<\/a>')
}
else document.write('Press '+chr+' to bookmark this page.');
                  