var lang = {};

function el(Id) {
	return document.getElementById(Id);
}

function check_quick_search_form() {
	var search_query = el("search_query");

	if(search_query.value == "") {
		alert(lang.EmptyQuickSearch);
		search_query.focus();
		return false;
	}

	return true;
}
