var agt		= navigator.userAgent.toLowerCase();
var versInt	= parseInt(navigator.appVersion);
var is_aol	= (agt.indexOf("aol") != -1);


function goTo( url ) {
	window.location.href = url;
} 

function RelatedBar2( tableCellRef, hoverFlag, navStyle ) {
	if ( hoverFlag ) {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#87ABCF';
				tableCellRef.style.borderColor = '#3E6791';
				break;
			default:
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#c00';
				}
		}
	} else {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#E8F3FF';
				tableCellRef.style.borderColor = '#E8F3FF';
				break;
			default:
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#000';
				}
		}
	}
}

function RelatedBarClick2( tableCellRef, navStyle, url ) {
	RelatedBar2( tableCellRef, 0, navStyle );
	goTo( url );
}

// end

