// JavaScript Document
 function tr_over(oTr)
 {
 if(oTr.clicked !==true)
 oTr.style.backgroundColor="#E1DFD7";
 }
 function tr_out(oTr)
 {
 if(oTr.clicked !==true)
 oTr.style.backgroundColor="#FFFFFF";
 }
 function tr_click(oTr)
 {
 	if(oTr.clicked !==true)
 	{
 	oTr.style.backgroundColor="#333333";
	oTr.style.color="#FFFFFF";
	oTr.clicked=true;
	}else{
	oTr.style.backgroundColor="#FFFFFF";
	oTr.style.color="#333333";
	oTr.clicked=false;
	}
 }
 function show_hide_Table(obj, targetId)
 {
 target=document.getElementById(targetId);
 	if(obj.opened!==true)
	{
 	obj.opened=true;
	 obj.innerHTML="- <b>Hide</b>"; 
	target.style.display="block";
 	}else{
	obj.opened=false;
	 obj.innerHTML="+ <b>View</b>"; 
	target.style.display="none";
	}
 
 }