<!--

// Puts State Value from the Drop-down list into the [joint Province/]State text field

// as well as the [hidden] state field



function PutState() {



        document.registration.province.value='--'



        document.registration.Country.value='US'



        document.registration.province_name.options[0].selected=true



        document.registration.country_name.options[220].selected=true



        var i=document.registration.state_name.selectedIndex



        document.registration.State.value=document.registration.state_name.options[i].value



        document.registration.state.value=document.registration.state_name.options[i].value



//        document.registration.state_name.options[0].selected = true



}







// Puts Province Value from the Drop-down list into the Province text field



function PutProvince() {



	document.registration.state.value='--'



        document.registration.state_name.options[0].selected=true



        document.registration.Country.value='CA'



        document.registration.country_name.options[37].selected=true



        var i=document.registration.province_name.selectedIndex

        document.registration.province.value=document.registration.province_name.options[i].value



document.registration.State.value=document.registration.province_name.options[i].value





//        document.registration.province_name.options[0].selected = true



}







// Puts Country Value from the Drop-down list into the Country text field



function PutCountry() {



        var j=document.registration.country_name.selectedIndex



      document.registration.Country.value=document.registration.country_name.options[j].value



        if (document.registration.country_name.options[j].value =='CA') {



                document.registration.state_name.options[0].selected = true



//                document.registration.country_name.options[0].selected = true



                }



        else if (document.registration.country_name.options[j].value =='US') {



                document.registration.province.value = '--'



                document.registration.province_name.options[0].selected = true



//                document.registration.country_name.options[0].selected = true



                }



        else {



                document.registration.province.value='--'



         	document.registration.state.value='--'



        	document.registration.State.value='--'



                document.registration.province_name.options[0].selected = true



//                document.registration.country_name.options[0].selected = true



                document.registration.state_name.options[0].selected = true



                }



}







// Writes Province Value from the Drop-down list into the text field



function WriteProvince() {



        if (document.registration.province.value != '--')



                {



                document.registration.state_name.options[0].selected=true



                document.registration.province_name.options[0].selected = true



                document.registration.country_name.options[0].selected=true



                }



}



// Writes Country Value from the Drop-down list into the text field



function WriteCountry() {



        if (document.registration.Country.value != '--')



        {



        if (document.registration.Country.value =='US') {



                document.registration.country_name.options[220].selected=true



                document.registration.province_name.options[0].selected=true



                document.registration.province.value='--'



                }



        else if (document.registration.Country.value=='CA') {



                document.registration.country_name.options[37].selected=true



                document.registration.state_name.options[0].selected=true



                }



        else {



//                document.registration.country_name.options[0].selected=true



                document.registration.state_name.options[0].selected=true



                document.registration.province_name.options[0].selected=true



                }



        }



}





//-->

