function populateNextSelect(nexttype, selectedid) {
	if (selectedid == 0) return;
	$("#loadingDiv").show();
	$.get("/populate.php", { next: nexttype, id: selectedid}, function(data) {
	if(data == 'NOCHILDREN')
		{$("#"+nexttype).html("<select name=" + nexttype + " id='searchSelect'> <option value='0'>None</option></select>");}
	else
		{$("#"+nexttype).html(data);}
 	$("#loadingDiv").hide();} );
}


function goToFromSelect(){
	if (document.getElementById('townSel') != null && document.getElementById('townSel').value != 0)
		window.location='/networks/community.php?networkid='+document.getElementById('townSel').value;
	else{
		if (document.getElementById('cazaSel') != null && document.getElementById('cazaSel').value != 0)
			window.location='/networks/community.php?networkid='+document.getElementById('cazaSel').value;
		else{
			if (document.getElementById('provinceSel') != null && document.getElementById('provinceSel').value != 0)
				window.location='/networks/community.php?networkid='+document.getElementById('provinceSel').value;
			else{
				if (document.getElementById('countrySel').value != 0)
					window.location='/networks/community.php?networkid='+document.getElementById('countrySel').value;
				else{
					alert("You must at least select a country first.");
				}
			}
		}
	}			
}

