function redirect_country() {
/*	var list=document.getElementById('countryselect');
	var country=list.options[list.selectedIndex].value;
	window.location=country;
*/
	top.window.location=document.getElementById('countryselect').options[document.getElementById('countryselect').selectedIndex].value;
}

function start_kereskedokereses() {
	document.getElementById("kereskedokereso").submit();
}

function start_partnerkereses() {
	document.getElementById("partnerkereso").submit();
}

function start_dokumentumkereses() {
	document.getElementById("dokumentumkereso").submit();
}

function setApplyGroup(obj){
	applyCounter=0;
	while(document.getElementById(obj.id.concat(applyCounter))){
		document.getElementById(obj.id.concat(applyCounter)).checked=obj.checked;
		applyCounter++;
	}
}


