var _countryID = -1;
var _stateID = "-1";

function ChangeCountry(countryID)
{
	_countryID = countryID;
	_stateID = "-1";

	document.getElementById("ddlUSStates").selectedIndex = 0;
	SetVisible("ddlUSStates", (countryID == 210) ); // USA is 210
}

function ChangeState(stateID)
{
	_stateID = stateID;
}

function Submit()
{
	if ( _countryID == -1 )
	{
		alert("Please select a country");
		return false;
	}
	else if ( _countryID == 210 && _stateID == "-1" )
	{
		alert("Please select a state");
		return false;
	}
	else
	{
		//document.forms[0].submit();
		return true;
	}
}

function OpenBusinessCard(companyID)
{
	var win = window.open( "RepBusinessCard.aspx?cid=" + companyID, "winBizCard", "top=50,screenY=50,left=50,screenX=50,width=400,height=250,resizable=true,location=false,menubar=false,status=false,toolbar=false,scrollbars=true" );
	win.focus();
}
