function editFields(tog) {

	if(tog==1) {
		document.form1.customer_firstname.value=document.form1.eshop_firstname.value;
		document.form1.customer_lastname.value=document.form1.eshop_lastname.value;
		document.form1.customer_company.value=document.form1.eshop_company.value;		
		document.form1.customer_address1.value=document.form1.eshop_address1.value;
		document.form1.customer_address2.value=document.form1.eshop_address2.value;
		document.form1.customer_city.value=document.form1.eshop_city.value;
		document.form1.customer_county.value=document.form1.eshop_county.value;
		document.form1.customer_country.value=document.form1.eshop_country.value;
		document.form1.customer_postcode.value=document.form1.eshop_postcode.value;
		document.form1.customer_tel.value=document.form1.eshop_tel.value;
		document.form1.customer_fax.value=document.form1.eshop_fax.value;
		document.form1.customer_email.value=document.form1.email.value;		
	} else {
		document.form1.customer_firstname.value="";
		document.form1.customer_lastname.value="";
		document.form1.customer_company.value="";
		document.form1.customer_address1.value="";
		document.form1.customer_address2.value="";
		document.form1.customer_city.value="";
		document.form1.customer_county.value="";
		document.form1.customer_country.value="";
		document.form1.customer_postcode.value="";
		document.form1.customer_tel.value="";
		document.form1.customer_fax.value="";
		document.form1.customer_email.value="";
	}
}
