// These two functions handle the selecting or unselecting of the fields
// as the user selects or unselects them (gets focus or loses focus e.g. blur)

function FieldSelected(objElement)
{
  if (objElement.className=='Search')
    objElement.className='focus';
  if (objElement.className=='rollover')
    objElement.className='focus';
}
function FieldUnSelected(objElement)
{
  if (objElement.className=='focus')
    objElement.className='Search';
}


function FieldRollOver(objElement)
{
  if (objElement.className=='Search') 
    objElement.className='rollover';
}
function FieldRollOut(objElement)
{
  if (objElement.className=='rollover')
    objElement.className='Search';
}
