// IF THE BROWSER IS MSIE4.0 FOR WINDOWS NT AND 95 ONLY, THEN bIsIE432 = TRUE var sAgent = navigator.userAgent var bIs95NT = sAgent.indexOf("Windows 95") > -1 || sAgent.indexOf("Windows NT") > -1 || sAgent.indexOf("Win32") > -1 || sAgent.indexOf("Windows 98") > -1 || sAgent.indexOf("Windows 2000") > -1 var bIsIE4 = sAgent.indexOf("IE 4") > -1 || sAgent.indexOf("IE 5") > -1 var bIsIE432 = bIs95NT && bIsIE4 // function transitionHead() { if (bIsIE432) { idHead.style.visibility = "hidden" idTransDiv.filters.item(0).apply() idTransDiv.filters.item(0).transition = 23 idHead.style.visibility = "visible" idTransDiv.filters(0).play(1.000) } } function launch(newURL,newName,newFeatures,orgName){ var remote = open(newURL,newName,newFeatures); if(remote.opener == null) remote.opener = window; remote.opener.name = orgName; return remote; } if (document.images) { // common images var schedule_off = new Image(); schedule_off.src = "images/schedule_off.gif"; //var events_off = new Image(); //events_off.src = "images/events_off.gif"; --> var wkParty_off=new Image(); wkParty_off.src="images/wkParty_off.gif"; var membership_off = new Image(); membership_off.src = "images/membership_off.gif"; var forsale_off = new Image(); forsale_off.src = "images/forsale_off.gif"; var xlinks_off = new Image(); xlinks_off.src = "images/xlinks_off.gif"; var pictures_off = new Image(); pictures_off.src = "images/pictures_off.gif"; var schedule_on = new Image(); schedule_on.src = "images/schedule_on.gif"; //var events_on = new Image(); //events_on.src = "images/events_on.gif"; var wkParty_on=new Image(); wkParty_on.src="images/wkParty_on.gif"; var membership_on = new Image(); membership_on.src = "images/membership_on.gif"; var forsale_on = new Image(); forsale_on.src = "images/forsale_on.gif"; var xlinks_on = new Image(); xlinks_on.src = "images/xlinks_on.gif"; var pictures_on = new Image(); pictures_on.src = "images/pictures_on.gif"; // end common images } function act(imgName){ if (document.images) document.images[imgName].src = eval(imgName + "_on.src"); } function inact(imgName){ if (document.images) document.images[imgName].src = eval(imgName + "_off.src"); }