<!--
var OnlyOnce = false;

function SubmitOnce(form) {
//alert(form);
if (OnlyOnce == true){
alert("Form is already being submitted!");
return(false);
}
OnlyOnce = true;
document.orderForm.submit();
return(true);
}
//-->