// JavaScript Document

function FillBilling(f) {
  if(f.sameinfo.checked == true) {
    f.Agentfirstname.value=f.Ownerfirstname.value;
    f.Agentlastname.value=f.Ownerlastname.value;
    f.Agentaddress.value=f.Owneraddress.value;
    f.Agenthomephonenumber.value=f.Ownerhomephonenumber.value;
    f.Agentcellphonenumber.value=f.Ownercellphonenumber.value;
    f.Agentemailaddress.value=f.Owneremailaddress.value;
	f.Agentcity.value=f.Ownercity.value;
	f.Agentstate.value=f.Ownerstate.value;
	f.Agentzip.value=f.Ownerzip.value;
    
  }
}

