function getPar(o)
 { var ele = new Object();
   ele = findDIV(o)
   if (ele!=null)
     { var oA = ele.children.item(1);
       if (oA.style.display == "inline")
            oA.style.display = "none";
       else
            oA.style.display = "inline";
     }
 }

function findDIV(x)
 { var oDiv = document.all.tags("P");
   var iDiv;
   if (oDiv != null)
   	{ iDiv = oDiv.length;
   	  for (var i=0; i<iDiv; i++)
   	     if(oDiv[i].contains(x))
   	       return oDiv[i];
   	}
 }
	
function overState(obj)
 { obj.currentColor = obj.style.color;
   obj.style.color = "#e65f00";
   obj.style.cursor = "hand";
 }

function outState(obj)
 { obj.style.color = obj.currentColor;	}
