function generate_search_cgi(langh){
	var cgi = new Array();
	cgi[cgi.length] = "day0="+document.getElementById("day0").value;
	var zz = (document.getElementById("monthSelection0").value).split("/");
	cgi[cgi.length] = "month0="+zz[0];
	cgi[cgi.length] = "year0="+zz[1];
	
	cgi[cgi.length] = "day1="+document.getElementById("day1").value;
	var zz = (document.getElementById("monthSelection1").value).split("/");
	cgi[cgi.length] = "month1="+zz[0];
	cgi[cgi.length] = "year1="+zz[1];

	var zz = document.getElementById("country");

	if(typeof(zz.options) != "object"){
		cgi[cgi.length] = (zz.value!="0" ? "country="+zz.value : "");
	} else {
		//console.log(typeof(zz.options));
		cgi[cgi.length] = (zz.options[zz.selectedIndex].value!="0" ? "country="+zz.options[zz.selectedIndex].value : "");
	}


	var zz = document.getElementById("ttype");
	cgi[cgi.length] = (zz.options[zz.selectedIndex].value!="0" ? "ttype="+zz.options[zz.selectedIndex].value : "");

	var zz = document.getElementById("operators");
	cgi[cgi.length] = (zz.options[zz.selectedIndex].value!="0" ? "operators="+zz.options[zz.selectedIndex].value : "");

	
	var zz = document.getElementById("cena_no");
	cgi[cgi.length] = (zz.value!="" ? "cena_no="+zz.value : "");
	var zz = document.getElementById("cena_lidz");
	cgi[cgi.length] = (zz.value!="" ? "cena_lidz="+zz.value : "");
	
	
	var cgi_out = "";
	for(var i=0; i<cgi.length; i++){
		if(cgi[i]!="") cgi_out += (cgi_out==""?"?":"&") + cgi[i];
	}
	
	window.location = "/"+langh+"/pages/celojumi"+cgi_out;
}