// JavaScript Document
function loadList()
{
	var i;
	var list = document.frmBuyCardEasy.cboCardType;
	var net = document.frmBuyCardEasy.cboNetworkProvider.value;
	clearList(list); 
	
	for(i in cards[net])
	{
		list.options[list.options.length] = new Option(cards[net][i], i);
	}
	if (net == 'mtel' || net == '') list.disabled = true;
}

function clearList(combo)
{
	while (combo.length > 0) combo.remove(0)
	combo.disabled = false;
}