//
//Maffo Advanced Locations Sytstem
//For use with 68Classifieds 4
//Written by Andy Mathieson 
//Email maffo@classified-software.co.uk
//Online manaual available at
//http://www.classified-software.co.uk
//

function showChildren(parent_id,location_id,admin){
if (parent_id=="none"){
	location_id=location_id-1;
	var reset_child = document.getElementById("child_2");
	reset_child.innerHTML = '<input name="city" type="text"  value="" size="30" />';
}
if (location_id==1){
var reset_child = document.getElementById("child_2");
	reset_child.innerHTML = '<input name="city" type="text"  value="" size="30" />'; 
}
display_element="child_"+location_id;
document.getElementById("child_2").value="";
if(admin=='a')
	{
		var url="../modules/maff_locations/localizer_dropdown.php";	  
	}
else{
  		var url="modules/maff_locations/localizer_dropdown.php";
}
url=url+"?p="+parent_id+"&l="+location_id+"&u="+admin;
url=url+"&sid="+Math.random();
if(location_id<3){
	var query="";
	sendRequested(query,url,true);
	}
}