<!--

if( document.images ) {

   button1_off = new Image();
   button1_off.src = "/img/buttons/buttons-admin.gif";
   button1_on = new Image();
   button1_on.src = "/img/buttons/buttons-admin-on.gif";

   button2_off = new Image();
   button2_off.src = "/img/buttons/buttons-staff.gif";
   button2_on = new Image();
   button2_on.src = "/img/buttons/buttons-staff-on.gif";

   button3_off = new Image();
   button3_off.src = "/img/buttons/buttons-members.gif";
   button3_on = new Image();
   button3_on.src = "/img/buttons/buttons-members-on.gif";

   button21_off = new Image();
   button21_off.src = "/img/buttons/buttons-newmember.gif";
   button21_on = new Image();
   button21_on.src = "/img/buttons/buttons-newmember-on.gif";

   button4_off = new Image();
   button4_off.src = "/img/buttons/buttons-groupmail.gif";
   button4_on = new Image();
   button4_on.src = "/img/buttons/buttons-groupmail-on.gif";

   button5_off = new Image();
   button5_off.src = "/img/buttons/buttons-budget.gif";
   button5_on = new Image();
   button5_on.src = "/img/buttons/buttons-budget-on.gif";

   button6_off = new Image();
   button6_off.src = "/img/buttons/buttons-profile.gif";
   button6_on = new Image();
   button6_on.src = "/img/buttons/buttons-profile-on.gif";

   button22_off = new Image();
   button22_off.src = "/img/buttons/buttons-instprofile.gif";
   button22_on = new Image();
   button22_on.src = "/img/buttons/buttons-instprofile-on.gif";

   button7_off = new Image();
   button7_off.src = "/img/buttons/buttons-traininglogs.gif";
   button7_on = new Image();
   button7_on.src = "/img/buttons/buttons-traininglogs-on.gif";
  
   button8_off = new Image();
   button8_off.src = "/img/buttons/buttons-clinicmanual.gif";
   button8_on = new Image();
   button8_on.src = "/img/buttons/buttons-clinicmanual-on.gif"; 
  
   button9_off = new Image();
   button9_off.src = "/img/buttons/buttons-curriculum.gif";
   button9_on = new Image();
   button9_on.src = "/img/buttons/buttons-curriculum-on.gif";

   button10_off = new Image();
   button10_off.src = "/img/buttons/buttons-trainsched.gif";
   button10_on = new Image();
   button10_on.src = "/img/buttons/buttons-trainsched-on.gif";

   button11_off = new Image();
   button11_off.src = "/img/buttons/buttons-archives.gif";
   button11_on = new Image();
   button11_on.src = "/img/buttons/buttons-archives-on.gif";

   button12_off = new Image();
   button12_off.src = "/img/buttons/buttons-askinstructor.gif";
   button12_on = new Image();
   button12_on.src = "/img/buttons/buttons-askinstructor-on.gif";

   button13_off = new Image();
   button13_off.src = "/img/buttons/buttons-techsupport.gif";
   button13_on = new Image();
   button13_on.src = "/img/buttons/buttons-techsupport-on.gif";

   button14_off = new Image();
   button14_off.src = "/img/buttons/buttons-faq.gif";
   button14_on = new Image();
   button14_on.src = "/img/buttons/buttons-faq-on.gif";

   button15_off = new Image();
   button15_off.src = "/img/buttons/buttons-parteval.gif";
   button15_on = new Image();
   button15_on.src = "/img/buttons/buttons-parteval-on.gif";

   button16_off = new Image();
   button16_off.src = "/img/buttons/buttons-insteval.gif";
   button16_on = new Image();
   button16_on.src = "/img/buttons/buttons-insteval-on.gif";

   button17_off = new Image();
   button17_off.src = "/img/buttons/buttons-cliniceval.gif";
   button17_on = new Image();
   button17_on.src = "/img/buttons/buttons-cliniceval-on.gif";

   button18_off = new Image();
   button18_off.src = "/img/buttons/buttons-logout.gif";
   button18_on = new Image();
   button18_on.src = "/img/buttons/buttons-logout-on.gif";

   button19_off = new Image();
   button19_off.src = "/img/buttons/buttons-home.gif";
   button19_on = new Image();
   button19_on.src = "/img/buttons/buttons-home-on.gif";

   button20_off = new Image();
   button20_off.src = "/img/buttons/buttons-help.gif";
   button20_on = new Image();
   button20_on.src = "/img/buttons/buttons-help-on.gif";


} // end if

function leapto(form) {
   var site=form.dest.selectedIndex;
   // if (site>38) // Everything except element [1] is unavailable
      // { alert("The schedule for " + form.dest.options[site].value + " is currently unavailable."); }
   if (form.dest.options[site].value != '')
      { location=form.dest.options[site].value; }
}

function GetCookie(name) {
    var start = document.cookie.indexOf(name+"=");
    var len = start+name.length+1;
    if ((!start) && (name != document.cookie.substring(0,name.length))) return null;
    if (start == -1) return null;
    var end = document.cookie.indexOf(";",len);
    if (end == -1) end = document.cookie.length;
    return unescape(document.cookie.substring(len,end));
}
 
function SetCookie(name,value,expires,path,domain,secure) {
    document.cookie = name + "=" +escape(value) +
        ( (expires) ? ";expires=" + expires.toGMTString() : "") +
        ( (path) ? ";path=" + path : "") + 
        ( (domain) ? ";domain=" + domain : "") +
        ( (secure) ? ";secure" : "");
}
 
function CheckUserCookie() {
	if (GetCookie('user') == null) {
		// window.location.href = '/marathon/';
		// location="/marathon/";
		return false;
	}
	return true;
}

var helpWin = '';

function helpPop(query,step) {
	if (helpWin && !helpWin.closed) {
		helpWin.close();
	}
	helpWin=window.open("http://www.clinics.runningroom.com/hm/help.php?helpId="+query+"&step="+step, "helpWin1", "scrollbars=yes,toolbar=no,directories=no,menubar=no,resizable=yes,width=370,height=420");
	helpWin.focus();
	if (!helpWin.opener) helpWin.opener = self;
}


function hiLite(imgDocID,imgObjName) {
        if (document.images) {
	        document.images[imgDocID].src = eval(imgObjName + ".src");
		} // end if
} //end hilite

//  End -->

