function MM_openBrWindow(theURL,winName,features) { //v2.0  window.open(theURL,winName,features);}function navBar( tableCellRef, hoverFlag, navStyle ) {	if ( hoverFlag ) {		switch ( navStyle ) {			case 1:				tableCellRef.style.backgroundColor = '#666666';				break;			default:				if ( document.getElementsByTagName ) {					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#333333';				}		}	} else {		switch ( navStyle ) {			case 1:				tableCellRef.style.backgroundColor = '#333333';				break;			default:				if ( document.getElementsByTagName ) {					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#666666';				}		}	}}function navBarb( tableCellRef, hoverFlag, navStyle ) {	if ( hoverFlag ) {		switch ( navStyle ) {			case 1:				tableCellRef.style.backgroundColor = '#999999';				break;			default:				if ( document.getElementsByTagName ) {					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#666666';				}		}	} else {		switch ( navStyle ) {			case 1:				tableCellRef.style.backgroundColor = '#666666';				break;			default:				if ( document.getElementsByTagName ) {					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#999999';				}		}	}}function navBarClick( tableCellRef, navStyle, url ) {	navBar( tableCellRef, 0, navStyle );	goToUrl( url );}function goToUrl( url ) {	window.location.href = url;}function clearText(thefield){if (thefield.defaultValue==thefield.value)thefield.value = ""} 