//-------------------------------------------------------------------------

// functions for default.asp
function LoadWindow(action,lang) {
	document.forms.inputform.citymode.value = action;
	window.open("/citylist_"+lang+".html","citychooser","width=350,height=330");
	return;
}
//----
function Do_Search(lang) {
	var bCorrect = true;
	if (document.inputform.cityfrom0.value == "") bCorrect = false;
	if (document.inputform.cityto0.value == "") bCorrect = false;
	if (document.inputform.day0.value == "") bCorrect = false;
	if (document.inputform.month0.value == "") bCorrect = false;
	if (!bCorrect) {
		if (lang == "ro") {
			alert("Completati, va rog, toate cimpurile necesare!");
		} else if (lang == "en") {
			alert("Please, fill in all the required fields!");
		} else {
			alert("Пожалуйста, заполните все необходимые поля!");
		}
		return;
	}
	else {
//--		document.all.wait.style.display = 'block';
		document.inputform.submit();
		return;
	}
}
//-------------------------------------------------------------------------


