function expandDiv(obj) {
var el = document.getElementById(obj);
if ( el.style.display != "none" ) {
el.style.display = "none";
window.focus();
}
else
{
el.style.display = "";
window.focus();
}
}

function erase_field()
{
  if(document.search_form.query.value == 'Localitatea ...') document.search_form.query.value = "";
}
function restore_field(input_field, value_input)
{
  if(input_field.value == "") input_field.value = value_input;
}


$(document).ready(function () {

 var floria_height = 650 + $("#divalert").height();
 $("#divfloria").css("margin-top", ""+floria_height+"px");
  
});



