<!--function brwsrChk() {	version = parseFloat( navigator.appVersion );	if (( navigator.appName.indexOf( "Netscape" ) != -1 ) && ( version >= 2.0 ) && ( version < 3.0 )) {		return false;	} else {		return true;	}}function mnuChk(thsMu) {	if ( !brwsrChk() ) { return; }		thsMnuNm = "document.classForm.series" + thsMu;		thsMnuNm = thsMnuNm + ".options.selectedIndex";		if ( thsMnuNm != 0 ) {			if (thsMu != "100") { document.classForm.series100.options.selectedIndex = 0; }			if (thsMu != "200") { document.classForm.series200.options.selectedIndex = 0; }			if (thsMu != "300") { document.classForm.series300.options.selectedIndex = 0; }			if (thsMu != "500") { document.classForm.series500.options.selectedIndex = 0; }			if (thsMu != "600") { document.classForm.series600.options.selectedIndex = 0; }			if (thsMu != "700") { document.classForm.series700.options.selectedIndex = 0; }			if (thsMu != "800") { document.classForm.series800.options.selectedIndex = 0; }			if (thsMu != "900") { document.classForm.series900.options.selectedIndex = 0; }		}	return;}function radioChk(thsMu) {	if ( !brwsrChk() ) { return; }		if (thsMu == "7day") { window.document.daysForm.radio7day.checked = true; window.document.daysForm.radio6day.checked = false; window.document.daysForm.radioSund.checked = false; }		if (thsMu == "6day") { window.document.daysForm.radio7day.checked = false; window.document.daysForm.radio6day.checked = true; window.document.daysForm.radioSund.checked = false; }		if (thsMu == "Sund") { window.document.daysForm.radio7day.checked = false; window.document.daysForm.radio6day.checked = false; window.document.daysForm.radioSund.checked = true; }	return;}//-->