//<!--
//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";
	var theA = objThis.cells[1].getElementsByTagName("a");
	theA[0].className = theA[0].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("_") );
	var theA = objThis.cells[1].getElementsByTagName("a");
	theA[0].className = theA[0].className.substring(0, theA[0].className.lastIndexOf("_") );
}

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

//-->

