function CheckTotal(){
 if(document.frmCheckout.totValue.value == 1){
 	document.frmCheckout.submit();
 }else{
    alert('The total value for trade orders needs to be in excess of 125.00 pounds. Please go back to amend the quantities and resubmit.');
    return false;
 }
}