function title_mOver(theObject,id){
 theObject.style.color="yellow"
 document.all[id].style.visibility="visible"
}
function title_mOut(theObject,id){  
  document.all[id].style.visibility="hidden"  
  theObject.style.color="white"
}
function sub_mOver(theObject,id){
  theObject.style.visibility="visible"
  document.all[id].style.color="yellow"
}
function sub_mOut(theObject,id){
  theObject.style.visibility="hidden"
  document.all[id].style.color="white"
}
function mOver(theObject){
  theObject.style.backgroundColor="#b04054"
}
function mOut(theObject){
  theObject.style.backgroundColor="transparent"
}
function open_page(fileName,target){
  if(target=="_top") top.location=fileName
  else{
   if (target=="_blank"){
     window.open(fileName,'')
   }
   else parent.frames[target].location=fileName}
}
function chosen(theObject,id){
  theObject.style.visibility="hidden"
  document.all[id].style.color="white" 
}