//---------------------------------------------------------------
// Copyright (c) 2000-2003 Asset Web Design
// Pearland, Texas 281-412-3539
//
// Any use of this script without explicit permission from 
// Asset Web Design is prohibited.
//
// 2004-05-06
//---------------------------------------------------------------

var g_sBackgroundColor;


//---------------------------------------------------------------

function AdvFormFieldFocus (objField)
  {
  objField.focus ();
  return true;
  }


//---------------------------------------------------------------
//- highlight ---------------------------------------------------

function AdvFormFieldHighlight (objField)
  {
  g_sBackgroundColor = objField.style.backgroundColor;
  objField.style.backgroundColor = "#FFFFDD";
  return true;
  }


//---------------------------------------------------------------

function AdvFormFieldUnhighlight (objField)
  {
  objField.style.backgroundColor = g_sBackgroundColor;
  return true;
  }


