var arrCountry = {
  "International":"pcarlzen.php", 
  "USA":"usa.php"
}

function counselorcountry(strCountry)
{
  var newloc = arrCountry[strCountry];
  window.location = newloc;
}


