/*  
 *  (c) 2009 Operation Rescue the Children, Inc. All Rights Reserved
 *
 *  Contact: info@rescuechild.org or call 1-866-ORC-KIDS
 *
/*--------------------------------------------------------------------------*/

function submitFindChild()
{
	var genderObj = document.getElementById('selGender');
	var countryObj = document.getElementById('selCountry');
	var idxGender = genderObj.selectedIndex;
	var idxCountry = countryObj.selectedIndex;

	if (idxGender == 0 && idxCountry == 0) {
		//document.write("You selected Nothing!");
		document.findChildForm.action = 'sponsor/products.php';
	}
	else if (idxGender == 0 && idxCountry == 1) {
		//document.write("You selected Guatemala Children");
		document.findChildForm.action = 'sponsor/products.php?cat=26';
	}
	else if (idxGender == 1 && idxCountry == 1) {
		//document.write("You selected Guatemala Boys");
		document.findChildForm.action = 'sponsor/products.php?cat=27';
	}
	else if (idxGender == 2 && idxCountry == 1) {
		//document.write("You selected Guatemala Girls");
		document.findChildForm.action = 'sponsor/products.php?cat=28';
	}
	else if (idxGender == 0 && idxCountry == 2) {
		//document.write("You selected Honduras Children");
		document.findChildForm.action = 'sponsor/products.php?cat=9';
	}
	else if (idxGender == 1 && idxCountry == 2) {
		//document.write("You selected Honduras Boys");
		document.findChildForm.action = 'sponsor/products.php?cat=10';
	}
	else if (idxGender == 2 && idxCountry == 2) {
		//document.write("You selected Honduras Girls");
		document.findChildForm.action = 'sponsor/products.php?cat=11';
	}
	else if (idxGender == 0 && idxCountry == 3) {
		//document.write("You selected Peru Children");
		document.findChildForm.action = 'sponsor/products.php?cat=12';
	}
	else if (idxGender == 1 && idxCountry == 3) {
		//document.write("You selected Peru Boys");
		document.findChildForm.action = 'sponsor/products.php?cat=13';
	}
	else if (idxGender == 2 && idxCountry == 3) {
		//document.write("You selected Peru Girls");
		document.findChildForm.action = 'sponsor/products.php?cat=14';
	}
	else if (idxGender == 1 && idxCountry == 0) {
		//document.write("TODO - Temporary hack until I can add a new category in the cart db for All Boys");
		document.findChildForm.action = 'sponsor/products.php?cat=13';
	}
	else if (idxGender == 2 && idxCountry == 0) {
		//document.write("TODO - Temporary hack until I can add a new category in the cart db for All Girls");
		document.findChildForm.action = 'sponsor/products.php?cat=14';
	}
	else {
		/* this is an error condition.. do nothing */
	}

	return true;
}
