function changeLink(clVar) {
//alert(clVar);
document.getElementById(clVar).style.borderStyle="solid";
document.getElementById(clVar).style.color="white";
document.getElementById(clVar).style.backgroundColor= "#FFCC33";
document.getElementById(clVar).style.borderWidth="5px";
document.getElementById(clVar).style.textDecoration="none";
document.getElementById(clVar).style.weight="bold";

}//end of changeLink function

function changeLinkBack(clbVar) {
document.getElementById(clbVar).style.borderStyle="solid";
document.getElementById(clbVar).style.color="#367b30";
document.getElementById(clbVar).style.backgroundColor="white";
document.getElementById(clbVar).style.borderWidth="5px";
document.getElementById(clbVar).style.fontStyle="normal";
document.getElementById(clbVar).style.textDecoration="underline";
}//end of changeLinkBack function

function redirect(selectObject) 
{ 
  var choice = selectObject.selectedIndex; 
  window.location = selectObject.options[choice].value; 
}

function changeIt(ciBullet,ciLink,ciText){
//alert("ciBullet is holding" + ciBullet + " and  cilink is holding " + ciLink)
document.getElementById(ciBullet).src="Bullet3.gif";
document.getElementById(ciLink).style.textDecoration="none";
document.getElementById(ciLink).innerHTML= ciText;
}
function changeBack(cbBullet,cbLink,cbText){
//alert("ciBullet is holding" + cbBullet + " and  cblink is holding " + ciLink)
document.getElementById(cbBullet).src="Bullet4.gif";
document.getElementById(cbLink).style.textDecoration="underline";
document.getElementById(cbLink).innerHTML= cbText;
}
