<!--

function NP_openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}

/*function NPagreeTerms(form) {
	if (form.agree.checked == false ) {
		alert('You have not agreed to our terms &amp; conditions\n We cannot continue processing your order without this.');
		return false;
	} else {
		return true;
	}

}*/


/*function reload(form)
{
var val0=form.Your_Name.value;
var val1=form.Company.value;
var val2=form.Tel_No.value;
var val3=form.Email_Address.value;
var val4=form.PONumber.value;
var val5=form.Billing_Address.value;
var val6=form.Billing_Town.value;
var val7=form.Billing_County.value;
var val8=form.Billing_Postcode.value;
var val9=form.Billing_Country.options[form.Billing_Country.options.selectedIndex].value; 
self.location='checkout.php?name=' + val0 '&company=' + val1 '&telno=' + val2 '&email=' + val3 '&ponumber=' + val4 '&address=' + val5 '&town=' + val6 '&county=' + val7 '&postcode=' + val8 '&country=' + val9; 
}*/

function NPCopyVals(form) {
	form.Delivery_Address.value=form.Billing_Address.value;
	form.Delivery_Town.value=form.Billing_Town.value;
	form.Delivery_County.value=form.Billing_County.value;
	form.Delivery_Postcode.value=form.Billing_Postcode.value;
	form.Delivery_Country.selectedIndex=form.Billing_Country.selectedIndex;
}
//-->