<!--
// CSS CHECK
//if(navigator.appName == "Netscape" && document.layers != null && navigator.appVersion.charAt(0)=="4") app="N";
//else if(navigator.appName == "Microsoft Internet Explorer" && document.all != null) app="E";
//else if(navigator.appName == "Netscape" && document.getElementById != null && navigator.appVersion.charAt(0)=="5") app="N5";

//if((navigator.platform.indexOf("Win")< 0) && (app=="N")){
//    document.write('<LINK REL=STYLESHEET TYPE="text/css" HREF="includes/245Netscape4MAC.css" TITLE="MASTER">');
//} 
//else{
//    document.write('<LINK REL=STYLESHEET TYPE="text/css" HREF="includes/245.css" TITLE="MASTER">');
//}


// BROWSER CHECK - FOR VERSIONS 3 AND UP
var supported = navigator.userAgent.indexOf("Mozilla")==0 && navigator.userAgent.substring(8,9) >= 3;

// IMAGE PRELOAD
if (supported) {

	plus = new Image();
	plus.src = "images/+.gif";
	plus_on = new Image();
	plus_on.src = "images/+.gif";

}
// END IMAGE PRELOAD

// ROLL OVER
function waxOn(imgname){
   if (supported){ 
		var newsrc = eval(imgname+"_on.src");
		document.images[imgname].src=newsrc; 
   }
}

// ROLL OFF
function waxOff(imgname){
    if (supported){ 
		var newsrc = eval(imgname+".src");
		document.images[imgname].src=newsrc; 
	}
}

// POP-UP 
function popUp(file) {
	popupWindow = window.open(file,'','scrollbars=no,width=500,height=375');
}

// -->

