function FillBilling(f) {
if(f.billingtoo.checked == true) {

    f.delivery_address1.value = f.billing_address1.value;
    f.delivery_address2.value = f.billing_address2.value;
    f.delivery_address3.value = f.billing_address3.value;
    f.delivery_county.value = f.billing_county.value;
    f.delivery_postcode.value = f.billing_postcode.value;

    }
}

function speciesSelect( species ) {

	location.href = species + ".php";

	return true;
}

function popitup(url) {
	newwindow=window.open(url,'CV2','width=300 , height=200');
	if (window.focus) {newwindow.focus()}
	return false;
}