﻿
function ValidAddress(sender, args)
{
    alert(sender.name);  
}

function SetShipping(checkBox, ctrl, billingValues)
{

    var billValues = new String(billingValues);
    bill = billValues.split(';');
    
   if(checkBox.checked)
   {
    
 
   var ship1 =  document.getElementById(ctrl + "TextBoxShippingAddress1");
   var ship2 =  document.getElementById(ctrl + "TextBoxShippingAddress2");
   var ship3 =  document.getElementById(ctrl + "TextBoxShippingCity");
   var ship4 =  document.getElementById(ctrl + "TextBoxShippingCompany");
   var ship5 =  document.getElementById(ctrl + "TextBoxShippingPoBox");
   var ship6 =  document.getElementById(ctrl + "TextBoxShippingPhone");
   var ship7 =  document.getElementById(ctrl + "TextBoxShippingFirstName");
   var ship8 =  document.getElementById(ctrl + "TextBoxShippingLastName");
   var ship9 =  document.getElementById(ctrl + "TextBoxShippingEmail");
   var ship10 =  document.getElementById(ctrl + "TextBoxShippingZip");
   var ship11 =  document.getElementById(ctrl + "DropDownListShippingState");
 
      
      
    ship1.value =  bill[0];
    ship2.value =  bill[1];
    ship3.value =  bill[2];
    ship4.value =  bill[3];
    ship5.value =  bill[4];
    ship6.value =  bill[5];
    ship7.value =  bill[6];
    ship8.value =  bill[7];
    ship9.value =  bill[8];
    ship10.value =  bill[9];
    //alert(bill[10]);
    ship11.selectedIndex =  bill[10];
 }


}
