function hidestatus(){
window.status="";
return true
}

function expand(sec)
{

	//thisSec = eval('e'+sec);
	var id = "e"+sec;
   var target = document.getElementById(id);
    if (target.style.display == "" || target.style.display == "block")
    {
        target.style.display = "none";
    }
    else
    {
        target.style.display = "block";
    }

	
	 /*
	 if (thisSec != null){
          if (thisSec.length){
               if (thisSec[0].style.display != 'none'){
                    for (var i=0;i<thisSec.length;i++) {thisSec[i].style.display = "block"}
               }
               else{
                    for (var i=0;ithisSec.length;i++) {thisSec[i].style.display = 'inline'}
               }
          }
          else{
               if (thisSec.style.display != 'none'){
			   	thisSec.style.display = "block"
			   }else{
			   	thisSec.style.display = 'inline'
			   }
          }
     }
	 */

}
