//<script language="JavaScript"><!--
//------------------------------------------------------------------------
//
// File: McBookMark.js
// Author: McJesse of www.mcjesse.com
// Date: 
// Copyright ©: 2001, McJesse.com ® All Rights Reserved
//
//------------------------------------------------------------------------
//
// WARNING: The information in this file is protected by copyright law
// and international treaty provisions. Unauthorized reproduction or
// distribution of this file, or any portion of it, may result in severe
// criminal and civil penalties, and will be prosecuted to the maximum
// extent possible under the law.  Further, you may not reverse engineer,
// decompile, or disassemble this file.
//
//------------------------------------------------------------------------


ns4 = (document.layers)? true:false;
ie4 = (document.all)? true:false;
// Microsoft Stupidity Check
if (ie4) {
	s = navigator.userAgent;
	re = /MSIE.(?:\d|\.)+/i;
	a = s.match(re);
	s = a[0];
	re = /(?:\d|\.)+/;
	a = s.match(re);
	s = a[0];
	// Microsoft Stupidity Check^3
	eval('ie5 = (' + s + ' > 5)? true:false;');
	eval('ie6 = (' + s + ' > 6)? true:false;');
} else {
	ie5 = false;
	ie6 = false;
}

if(ie4) {
	document.write('<a href="javascript:void(\'Set '+document.title+' as Your Home Page\');" onClick="this.style.behavior=\'url(#default#homepage)\';this.setHomePage(location.href);"><img src="images/buttons/Button_HomePage.gif" border="0" align="top" alt="Set '+document.title+' as Your Home Page" onMouseOver="window.status=\'Set  '+document.title+' as Your Home Page\'; return true;" onMouseOut="window.status=\'\'; return true;"></a>');
	document.write('&nbsp;');
	document.write('<a href="javascript:void(\'Add '+document.title+' to Your Favorites\');" onClick="window.external.AddFavorite(location.href, document.title);"><img src="images/buttons/Button_Favorites.gif" border="0" align="top" alt="Add '+document.title+' to Your Favorites" onMouseOver="window.status=\'Add  '+document.title+' to Your Favorites\'; return true;" onMouseOut="window.status=\'\'; return true;"></a>');
} else if(ns4) {
	document.write("CTRL-D");
	document.write('&nbsp;');
	document.write('<a href="javascript:addToBar()"><img src="images/buttons/Buttons_HomePage.gif" border="0" align="top" alt="Add '+document.title+' to Bar" onMouseOver="window.status=\'Add  '+document.title+' to Bar\'; return true;" onMouseOut="window.status=\'\'; return true;"></a>');
}


function addToBar()
{
	if(window.sidebar&&window.sidebar.addPanel) window.sidebar.addPanel(document.title,location.href,"");
}

//--></script>