function setFlagLabel(str){
	obj =  document.getElementById('FlagLabel');
	obj.innerHTML = str;
}

function changeLang(lang){
	site = "http://www.idvon.com/idreg/home.php?lang=" + lang;	
	location.replace(site);
	return;
}

function getFromTo(obj){
	if (isWhitespace(obj.CountryFrom.value) || isWhitespace(obj.CountryTo.value)) {
		alert(pMesgs[100]);
		return false;}
	else{
		str = window.location;	
		myRe= new RegExp ("https?:\/\/[^\/]*\/", "g");
		url = myRe.exec(str);
		obj.action=url+"idreg/rates.php?countryfrom="+obj.CountryFrom.value+"&countryto="+obj.CountryTo.value;
		return true;
	}
}

function selectItem(obj,val) {
	ln = obj.length;
	for(i=0;i<ln;i++){
		if(obj.options[i].value==val){
			obj.options[i].selected =  true;
			break;
		}
	}
}
