// Check Contact-form [ini]
function chkContactForm()
{
  var err = "";
  if (document.getElementById('remitente').value.length < 1) {err+="El Remitente es obligatorio\n";}
  if (document.getElementById('email_remite').value.length < 1) {err+="El E-mail del Remitente es obligatorio\n";}
  if (document.getElementById('consulta').value.length < 1) {err+="La Consulta es obligatoria\n";}
  if (err.length > 1)
  {
    alert(err);
    return false;
  }
  document.all.bot.value='send';
  return true;
}
// Check Contact-form [end]

function focus_search_field(e)
{
	e.style.background = '#fff';
	e.value = '';
}

function blur_search_field(e)
{
	e.style.background = '#fff';
	if (e.value.length < 1) {
		e.value = 'Busca un anuncio..';
	}
}

function blur_search_field_z(e)
{
	e.style.background = '#fff';
	if (e.value.length < 1) {
		e.value = 'Busca un anuncio en tu Zona..';
	}
}
// Search Field Functions [end]
