// 301 org
// 310 purple

var pm_pic_dir='is_set/cdv_template/';
pm_bar_bg=pm_pic_dir+'bar_silver_bg.gif';
pm_bar_bgo=pm_pic_dir+'bar_silver_bgo.gif';

function AREA_goTo( url ) {
	window.location.href = url;
}


function AREA_navBar_3( tableCellRef, hoverFlag, navStyle ) {
	if ( hoverFlag ) {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#c60';	//(this,1,1) 0
				break;
			default:
				tableCellRef.style.backgroundColor = '#939';	//(this,1,0) 1
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#c00';
				}
		}
	} else {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#606';	//(this,0,1) 0
				break;
			default:
				tableCellRef.style.backgroundColor = '#f90';	// 1
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#fff';
				}
		}
	}
}

function AREA_navBarClick_3( tableCellRef, navStyle, url ) {
	AREA_navBar_3( tableCellRef, 0, navStyle );
	AREA_goTo( url );
}