// JavaScript Document

function textClear(element)
{
  if ( element.value != "" )
  {
      element.value = "";
  }
}
