<!--
    // ==============================================
    // Copyright 2003 by jsCode.com
    // Source: jsCode.com
    // Author: etLux
    // Free for all; but please leave in the header.
    // ==============================================

    // message to show in non-IE browsers
    var img = '<img src="images/bookmark.gif" align="right" hspace=10 width="32" title="bookmark this page" height="52" border="0">';
	var txt = "click here to bookmark this page";
    // do not edit below this line
    // ===========================

    var url = this.location;
    var who = document.title;
    var ver = navigator.appName;
    var num = parseInt(navigator.appVersion);
    if ((ver == "Microsoft Internet Explorer")&&(num >= 4)) {
       document.write('<A HREF="javascript:window.external.AddFavorite(url,who);" ');
       document.write('onMouseOver=" window.status=')
       document.write("txt; return true ")
       document.write('"onMouseOut=" window.status=')
       document.write("' '; return true ")
       document.write('">'+ img + txt + '</a>')
       document.write('<br /><br />')
    }
//-->

