// Copyright (c) 2000-2008 Asset Web Design.  All rights reserved.
// Pearland, Texas 77581
// 281-412-3539
// www.asset-web.com


//-- globals ----------------------------------------------------
//---------------------------------------------------------------

var g_sBackgroundColor;


//-- functions --------------------------------------------------
//---------------------------------------------------------------

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;
  }


