function DisableButton(btn_top, btn_bottom, myselection)
{
	if(myselection == 1)
	{
		btn_top.disabled = true;
		btn_bottom.disabled = true;
	}
	else
	{
		btn_top.disabled = false;
		btn_bottom.disabled = false;
	}
}	


function CountryDropDown_Validation(source, arguments)
{
	var CountryDropDown = document.getElementById("PartnerLocation_cboCountry");
	
		if(CountryDropDown.selectedIndex == 0)
			arguments.IsValid = false;
		else
			arguments.IsValid = true;
	
}


function StateDropDown_Validation(source, arguments)
{
	var StateDropDown_Validation = document.getElementById("PartnerLocation_cboState");

		if(StateDropDown_Validation.selectedIndex == 0)
			arguments.IsValid = false;
		else
			arguments.IsValid = true;
	
}