function copy()
{ 
		var default1; 
			default1 = document.frm.billto_company.value; 
		var default2;
			default2 = document.frm.billto_address.value;
		var default3;
			default3 = document.frm.billto_city.value;
		var default4;
			default4 = document.frm.billto_state.value;
		var default5;
			default5 = document.frm.billto_zip.value;
		var default6;
			default6 = document.frm.billto_phone.value;
		var default7;
			default7 = document.frm.billto_fax.value;
			
	if(document.frm.same.checked == true)
	
	{
		document.frm.shipto_company.value= default1;
		document.frm.shipto_address.value= default2;
		document.frm.shipto_city.value= default3;
		document.frm.shipto_state.value= default4;
		document.frm.shipto_zip.value= default5;
		document.frm.shipto_phone.value= default6;
		document.frm.shipto_fax.value= default7;
	}
	
	else if(document.frm.same.checked == false)
	{
		document.frm.shipto_company.value= "";
		document.frm.shipto_address.value= "";
		document.frm.shipto_city.value= "";
		document.frm.shipto_state.value= "";
		document.frm.shipto_zip.value= "";
		document.frm.shipto_phone.value= "";
		document.frm.shipto_fax.value= "";
	}
}