// Script to show and hide and change the sign 

var iPlus = new Image();
var iMinus = new Image();
iPlus = "/home/images/OpenExpand.jpg";
iMinus = "/home/images/CloseExpand.jpg";

function fnContentSwitchDisplay(d,i) {
if(d.length < 1) { return; }
if(document.getElementById(d).style.display == "none")
 { document.getElementById(d).style.display = "block";
   document[i].src=iMinus;}
else { document.getElementById(d).style.display = "none"; 
        document[i].src=iPlus;}
}


//<!--- 
//<div class="section">
//    <h2 class="section"><A href="javascript:ContentSwitchDisplay('HIT','ANR')"><IMG Name="ANR"  src="/home/images/CloseExpand.jpg" >Advanced News Release Search (1995-present)</A></h2>
//<P id=HIT>
//    Content goes here
//</P>
//</DIV>
// --->
