function showDiv(oDiv){
 if(oDiv){
  if(oDiv.style.display==""){
    oDiv.style.display="none";
  }else{
   oDiv.style.display="";
  }
 }
}