function togglediv($id)
{
  $obj = document.getElementById($id);
  $obj.style.display = ($obj.style.display == 'none') ? 'block' : 'none';
}

window.onerror=function(){return true};

var EmptySearchField = 0;

function fnEmptySearchField (elm)
{
	if (EmptySearchField == 0)
	{
		elm.value = ""
	};
	EmptySearchField = 1;
}

