﻿// JScript File
//********Country***********


//********City*************

function funShowCity(objPath)
{
document.all['ifrm'].src=objPath +"?id="+ document.getElementById("SelCountry").value;

}

function funSendCity(objSelValue,objSelText)
{
var newElem = document.createElement("OPTION");
newElem.text = objSelText.replace(/\"/g,"\'");
newElem.value = objSelValue;
document.all['SelCity'].options.add(newElem);	
}

function funRemoveAllCity()
{
var totItems = document.all['SelCity'].options.length;

for(var i=totItems-1; i>0; i--)
{
document.all['SelCity'].options.remove(i);
}
document.f1.SelCity.options[document.f1.SelCity.selectedIndex].value=0;
}

function funCityBind()
{
document.f1.HidCityID.value=document.f1.SelCity.options[document.f1.SelCity.selectedIndex].value;
}


function funClearAllCityValues()
{
document.f1.SelCity.value=0;
}


