
function ChangeCountry(drpCountryField, drpStateFieldID) {
  var drpStateField = document.getElementById(drpStateFieldID);

  if (drpCountryField != undefined && drpStateField != undefined) {
    if (drpCountryField.options[drpCountryField.selectedIndex].value != "US") {
      drpStateField.selectedIndex = 1;
      drpStateField.disabled = true;
    }
    else {
      drpStateField.selectedIndex = 0;
      drpStateField.disabled = false;
    }
  }

}


function OpenDocument(fileURL) {

  document.write('<iframe height="0" width="0" src="' + fileURL + '"></iframe>');

}


function DownloadDocument(fileURL) {

  document.location = fileURL;

}