<!--
//get platform info
agt=navigator.userAgent.toLowerCase();
ie=(document.all) ? 1:0
ie4=(agt.indexOf('msie 4')!=-1) ? 1:0
ie5=(agt.indexOf('msie 5')!=-1) ? 1:0
ie6=(agt.indexOf('msie 6')!=-1) ? 1:0
ns4=(document.layers && parseInt(navigator.appVersion)>=4) ? 1:0
win=( (agt.indexOf("win")!=-1) || (agt.indexOf("16bit")!=-1) )
mac=(agt.indexOf("mac")!=-1);
imgs=(document.images) ? 1:0
//rollovers
function swapImage(theImage,newSrc){
	if(imgs){
		theOverImage=theImage; oldSrc=document.images[theImage].src;
		document.images[theImage].src=newSrc
		}
	}
function swapBack(){
	if(imgs){
		document.images[theOverImage].src=oldSrc
		}
	}
function preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

<!-- hide from old browsers
function goUrl(Selected) {
/* change page location to option selected from navigation drop-down */
var newURL = Selected.options[Selected.selectedIndex].value ;
if (newURL!=" ") {
parent.location = newURL;
}
}
// End of javascript -->