Sure, I will put the code here. I have only changed our email and company name for privacy.

I'm probably being silly! I don't know what the proper thing to do there is lol Anyway besides changing our email address and company name it's all exactly as I have it written. It is long though, so I will split it in half to get it all posted. Thanks for your help!!!!
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Order Form</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="javascript">
index = 0;
function format(val, post)
{
var decpoint;
var begin;
var end;
var valstr;
var temp_char;
valstr = "" + val;
//alert('valstr = ' + valstr);
decpoint = valstr.indexOf(".")
if (decpoint != -1) {
//alert('decpoint = ' + decpoint);
begin = valstr.substring(0,decpoint);
end = valstr.substring(decpoint+1,valstr.length);
//alert('begin = ' + begin + 'nend= ' + end);
}
else {
begin = valstr;
end = "";
}
if (end.length < post)
{while (end.length < post)
{
end += "0";
}
}
end = end.substring(0,post);
//alert('begin = ' + begin + 'nend= ' + end);
return (begin+"."+end);
}
function orderSubmit(type)
{
if (type == 'order')
{if ( ! ( (document.order.order_type.checked) ||
checkRequired() ))
}
}
}
var infowin = null;
function copyToShipping() {
if (document.order.same_flag.checked) {
document.order.ship_name.value = document.order.name_first.value+' '+document.order.name_last.value;
document.order.ship_address1.value = document.order.address1.value;
document.order.ship_address2.value = document.order.address2.value;
document.order.ship_city.value = document.order.city.value;
document.order.ship_state.value = document.order.state.value;
document.order.ship_zip.value = document.order.zip.value;
document.order.ship_country.value = document.order.country.value;
document.order.ship_phone.value = document.order.phone.value;
}
}
function disableSameFlag() {
document.order.same_flag.checked = false;
}
function checkRequired() {
if (!document.order.name_first.value.length ||
!document.order.name_last.value.length ||
!document.order.email.value.length ||
!document.order.address1.value.length ||
!document.order.city.value.length ||
!document.order.state.value.length ||
!document.order.zip.value.length ||
!document.order.country.value.length ||
!document.order.ship_name.value.length ||
!document.order.ship_address1.value.length ||
!document.order.ship_city.value.length ||
!document.order.ship_state.value.length ||
!document.order.ship_zip.value.length ||
!document.order.ship_country.value.length) {
alert('You have not completed all required fields:n' +
'Please complete the Name, Address, City, ' +
'County, Post Code, and Country in both then' +
'Customer Info and Shipping Address sections');
return true;
}
else {
return false;
}
}
<!-- -->
</script><!-- -->
</head>
<body text="#000000" bgcolor="#ffffff" background="images/thisback.gif"><a name="top"></a>
<script language="javascript">
<!-- hide
if (self==parent){document.write('<font color=#ff000><b>This is a frame element, click <a href=index.htm> here </a>for correct page</b></font>')};
<!-- end hide -->
</script>
<center><font color="#ff0000" size="7"><em>Order Form</em>
<br></font></center>
<center>
<br><b>Questions? Comments? Email us at <a href="mailto:YOUR">us@ouremail.com</a> or call us at 1-800-555-5555. </b></center>
<center><b>You can also phone in your order!</b> </center>
<center>
<form name="order" action="MAILTO=us@ouremail.com" method="post">
<input type="hidden" value="Order Forms -Our Company Order Form" name="subject">
<input type="hidden" value="YOUR EMAIL ADDRESS HERE" name="recipient">
<input type="hidden" value="thanku.htm" name="redirect">
<input type="hidden" value="Our Company" name="retailer">
<input type="hidden" value="order" name="form_action">
<script language="javascript">
<!-- hide from Browsers
document.write('<table width=400><td align=center>');
document.write('<table width=400 ><tr><tr><td align=right colspan=3 BGCOLOR=#FF9999><font size=+2>Running Total : $ </td><td colspan=3 BGCOLOR=FF9999> <input type=text name=total size=6 value='+ format(parent.all_order_totals(),2) + '></font></td><tr>');
document.write('<td colspan=6 align=center><b>This is your Order Total so far<br> <i>(Not including shipping charges)</i>.</td></tr><tr></table>');
if (parent.items_ordered == 0)
document.write('<font color=#000080><b>You have not ordered any items so far<b></font>');
if (parent.item_num > 0)
{
for (i =1;i < parent.item_num;i++)
{ if (parent.itemlist[i].quan > 0)
{index = index + 1;
document.write('<a href='+ parent.itemlist[i].url + '><i><b> review : </b></i></a><input size=10 type=text name= ' + parent.itemlist[i].code + ' value= ' + parent.itemlist[i].code + '><input size=6 type=text name= ' + parent.itemlist[i].code + ' value=' + parent.itemlist[i].price + '><input size=20 type=text name= ' + parent.itemlist[i].code + ' value= '+ parent.itemlist[i].desc + '><input size=2 type=text name= ' + parent.itemlist[i].desc + ' value= '+ parent.itemlist[i].quan + '><br>');
}
}
}
<!-- end hiding -->