 var DTable_menuskin = 'skin1'; 
 
 var DTable_display_url = 0; 
 
 var DTable_DTable_overcolormenu='ADD7FF'; 
 
 var DTable_clickedcolor='#ffffff'; 
 
 var DTable_clickedbgcolor='#fbcf8e'; 
 
 var thisname=''; var thisid='';


function DTable_tr_onclick(element,ztname,ztid)
	{

	thisname=ztname; 
	thisid=ztid; 
	var the9909href;
	var oTR = getElement(element, 'TR');
	var oTABLE = getElement(oTR, 'TABLE');
	if (oTABLE != null) { if (typeof(oTABLE.activeRow) != 'undefined' && oTABLE.activeRow != null) {
		oTABLE.activeRow.style.backgroundColor = ''; 
		oTABLE.activeRow.style.color = '';
		oTABLE.activeRow.active = 'false';
		}

		if (oTR != null) {
			oTR.style.backgroundColor = DTable_clickedbgcolor; 
			oTR.style.color = DTable_clickedcolor;
			oTR.active = 'true';
			oTABLE.activeRow = oTR;
			}
			}
			} 

function getElement(src, tagName) { var obj = src; while (obj != null && obj.tagName != tagName) { obj = obj.parentElement; } return obj; } 