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 leftnav( tableCellRef, hoverFlag, navStyle ) {
	if ( hoverFlag ) {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#CCDEED';
				break;
			default:
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#CCDEED';
				}
		}
	} else {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#fff';
				break;
			default:
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#000';
				}
		}
	}
}

function leftnavClick( tableCellRef, navStyle, url ) {
	//leftnav( tableCellRef, 0, navStyle );
	goTo( url );
}
function leftnavClickNew( tableCellRef, navStyle, url ) {
	leftnav( tableCellRef, 0, navStyle );
	window.open(url);
}



