// CT 08 basic javascript


// arrow switcher

function toggle(imagename,src1,src2){      
    if(document.images && document.images[imagename]){
        arrow=new Image;
        arrow.src=src1;
        if(document.images[imagename].src != arrow.src){
            document.images[imagename].src = arrow.src
        }
        else{
            document.images[imagename].src=src2
        }
    }
}


// div switcher

  function toggleDiv(divid){
    if(document.getElementById(divid).style.display == 'none'){
      document.getElementById(divid).style.display = 'block';
    }else{
      document.getElementById(divid).style.display = 'none';
    }
  }
  
  // div basic drop down menu

function openURL()
{ 

selInd = document.monthly.aaa.selectedIndex; 


goURL = document.monthly.aaa.options[selInd].value;


top.location.href = goURL; 
}



  // search text
 

