function jsRowOver(object,cursor) {
  object.style.background = '#9BA3A7';
  if (cursor) {
    object.style.cursor = 'pointer';
    object.style.cursor = 'hand';
  }
}

function jsRowOut(object) {
  object.style.background = '#798489';
  object.style.cursor = '';
  object.style.cursor = '';
}

function clearText(field){
  if (field.defaultValue == field.value) {
    field.value = "";
  }
}