	function SRAP_nav( tdRef, flag, bgStyle ) {
		if ( flag ) {
			switch ( bgStyle ) {
				case 1:
					tdRef.style.backgroundColor = '#B4C4B3';
					break;
				default:
					if ( document.getElementsByTagName ) {
						tdRef.getElementsByTagName( 'a' )[0].style.color = '#CC0000';
					}
			}
		} else {
			switch ( bgStyle ) {
				case 1:
					tdRef.style.backgroundColor = '#E3E9E3';
					break;
				default:
					if ( document.getElementsByTagName ) {
						tdRef.getElementsByTagName( 'a' )[0].style.color = '#000000';
					}
			}
		}
	}

	function SRAP_navClick( tdRef, bgStyle, url ) {
	SRAP_nav( tdRef, 0, bgStyle );
	SRAP_goto( url );
	}

	function SRAP_goto( url ) {
	window.location.href = url;
	}
	
	var win = 'toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=no,width=550,height=400,screenX=25,screenY=25';

	function PopUpDoc(v) {
    window.open(v,'Document',win);
    return;
}
