<!--
function ChangeBtnImage_Over(btnName){
 
 imageSrc = document.images[btnName].src;
 left_str = imageSrc.substr(0,imageSrc.lastIndexOf(".", imageSrc.length));
 right_str = imageSrc.substring(imageSrc.lastIndexOf(".", imageSrc.length), imageSrc.length);
 if (left_str.substr(left_str.length - 3, left_str.length) != "_on"){
 	changeSrc = left_str + "_on" + right_str;
 		document.images[btnName].src = changeSrc;
 }
}

function ChangeBtnImage_Out(btnName){
 imageSrc = document.images[btnName].src;
 left_str = imageSrc.substr(0,imageSrc.lastIndexOf(".", imageSrc.length) - 3);
 right_str = imageSrc.substring(imageSrc.lastIndexOf(".", imageSrc.length), imageSrc.length);
 
 changeSrc = left_str + right_str;
 document.images[btnName].src = changeSrc;
}
function goHome(){
 top.frames.document.location.href = '../index.html';
}
//-->

<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->

<!--
mac=(navigator.appVersion.indexOf('Mac')!=-1)?true:false;
ie=(navigator.appName.charAt(0) == "M")?true:false;

document.write("<STYLE TYPE='text/css'><!--")
if(mac){
	//FOR MACINTOSH IE NS
	document.write(".j9{font-size:12px}")
	document.write(".j10{font-size:10px}")
	document.write(".j11{font-size:10px} a ( text-decoration: none; )")
	document.write(".j12{font-size:14px}")
}
else{
	if(ie){
	//FOR WINDOWS IE
	document.write(".j9{font-size:13px; line-height:18px}")
	document.write(".j10{font-size:12px; line-height:13px}")
	document.write(".j11{font-size:11px; line-height:13px}")
	document.write(".j12{font-size:14px; line-height:16px}")
	}
	else{
	//FOR WINDOWS NETSCAPE
	document.write(".j9{font-size:13px; line-height:14px}")	
	document.write(".j10{font-size:12px; line-height:14px}")
	document.write(".j11{font-size:11px; line-height:14px}")
	document.write(".j12{font-size:14px; line-height:16px}")
	}
}
document.write("--></STYLE>");
//-->

<!--
var num = 2;
function timer () {
    if(document.img.complete) {
        document.img.src = "win/"+"nf_win" + num + ".gif";
        num++; if(num > 5) num = 1;
    }
    setTimeout("timer()", 5000);
}
//-->
