
//当鼠标在其上
function overcolor(obj)
{
 // if(obj.style.color=="#000000")
     obj.style.color ="#FF0000";
 // else
   //  obj.style.color = "#ff9966";
     //obj_div.focus();

}

//当鼠标在移出其上
function outcolor(obj)
{
  //if(obj.style.color=="#ff0000"||obj.style.color=="#FF0000")
      obj.style.color = "#000000";
  //else
    // obj.style.color = "#0000FF";
}
//fdsafsa
function hideTable(obj_image,obj_table){

obj = document.getElementById(obj_table);

if(obj.style.display=="none")
  { obj.style.display="";
     obj_image.src="images/plus.gif";
  }
else
  { obj.style.display="none";
    obj_image.src="images/plus.gif";
  }
 }


 //null转换为“”其他的转换为String
  // 并且把特殊字符转换为对应的字符\n ù \r ú "ò 'ó
   // @param obj Object
  // @return String
  function strutilEnter( obj){
    if(obj==null)
       return "";
    var newobj= obj.replace("ù","\n")
        .replace("ú","\r")
        .replace("ò","\"")
        .replace("ó","'") ;
   return newobj;
  }

