function openQuotePDF(i_id, zip) {
	location.href = 'http://reports.rigzone.com/ReportServer?%2fRigzone%2fRZStoreQuote&rs%3aCommand=Render&rs%3aFormat=PDF&paramInvoiceID=' + i_id + '&paramZip=' + zip;
}

function getCountryname(strInputName) {
	getCountryName(strInputName);
}

function getCountryName(strInputName) {
 if (strInputName == 'Ship_Country_ID') {
  if (document.frmCheckout.Ship_Country_ID.selectedIndex > 0) {
   document.frmCheckout.Ship_Country_Name.value = document.frmCheckout.Ship_Country_ID.options[document.frmCheckout.Ship_Country_ID.selectedIndex].text;
  }
 } else if (strInputName == 'Bill_Country_ID') {
  if (document.frmCheckout.Bill_Country_ID.selectedIndex > 0) {
   document.frmCheckout.Bill_Country_Name.value = document.frmCheckout.Bill_Country_ID.options[document.frmCheckout.Bill_Country_ID.selectedIndex].text;
  }
 }
}