//<!--
//Copyright 2002 - 2005 decloak, Inc. All rights reserved


var g_vTreeMsg = "";

function vTreeOnMouseOver( objThis ) {
	objThis.cells[0].className = objThis.cells[0].className + "_HOVER"; 
	objThis.cells[1].className = objThis.cells[1].className + "_HOVER";
}

function vTreeOnMouseOut( objThis ) {
	objThis.cells[0].className = objThis.cells[0].className.substring(0, objThis.cells[0].className.lastIndexOf("_") );
	objThis.cells[1].className = objThis.cells[1].className.substring(0, objThis.cells[1].className.lastIndexOf("_") );
}

function vTreeOnClick ( objThis )  {
	var theA = objThis.cells[1].getElementsByTagName("a");	
	if (objThis.cells[1].className.lastIndexOf("_ON") > -1 && objThis.cells[1].className.lastIndexOf("_ON") + 3 == objThis.cells[1].className.length) return;
	window.location = theA[0].href;
}


//-->


