// JavaScript Document


function toolTip(obj) {
tooltipName = obj.id +"_tt";
tooltipObj=document.getElementById(tooltipName);
if(tooltipObj.style.display=="block") {
tooltipObj.style.display="none";
}
else {
tooltipObj.style.display="block";
}
}


function blank() {
	// blank function to negate click
}
