Okay,
Here is a cut down version.
<html>
<head>
<SCRIPT language="JavaScript">
<!--
function VerifyFields() {
var msg="The following fields must be filled in:";
var blank=false;
for(var x=0;x<document.forms[0].length;x++) {
theObj=document.forms[0].elements[x];
theType=theObj.type;
theName=theObj.name;
theValue=theObj.value;
if((theType!="SUBMIT"

&&(theType!="RESET"

) {
// an input field requiring validation - ignore txtAddress2
if((theName!="txtAddress2"

&&(theValue==""

) {
msg+="\n* "+theName.substring(3,theName.length);
blank=true;
}
}
}
if(blank) {
alert(msg);
return false;
}
return true;
}
function VerifyData() {
if (VerifyFields()) {
if (document.frmUser.txtPassword.value != document.frmUser.txtVerifyPassword.value) {
alert ("Your passwords do not match - please reenter"

;
return false;
} else return true;
} else return false;
}
//-->
</SCRIPT>
<title>Application Form</title>
</head>
<body style="font-family: arial">
<div id="content">
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1">
<tr>
<td width="100%">
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber2" height="41">
<tr>
<td width="126%" height="15" colspan="3">
</td>
<td width="2%" height="3"></td>
<td width="6%" height="3"></td>
<td width="9%" height="3"></td>
<td width="20%" height="3"></td>
</tr>
<tr>
<td width="3%" height="3">
</td>
<td width="123%" height="3" colspan="2">
<font face="Arial"><b>Tenant Loan Application Form</b></font></td>
<td width="2%" height="3"></td>
<td width="6%" height="3"></td>
<td width="9%" height="3"></td>
<td width="20%" height="3"></td>
</tr>
<tr>
<td width="1%" height="19" valign="top">
</td>
<td width="96%" height="19" valign="top">
<form action="cgi-local/FormMail.pl" name="Application Form" method = "post" onSubmit="return VerifyData();">
<input type=hidden name="recipient" value=application@southernloanfinda.co.uk>
<input type=hidden name="redirect" value="
target="content">
<input type=hidden name="subject" value="Website Tenant Loan Application">
</font>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber3" height="1149">
<tr>
<td width="39%" colspan="2" height="19"> </td>
<td width="61%" colspan="2" height="19"> </td>
</tr>
<tr>
<td width="100%" colspan="4" height="2">
<img border="0" src="images/div.gif" width="100%" height="2"></td>
</tr>
<tr>
<td width="39%" colspan="2" height="19"><b><font face="Arial" size="2">Loan Details</font></b></td>
<td width="21%" height="19"> </td>
<td width="40%" height="19"> </td>
</tr>
<tr>
<td width="16%" height="19"> </td>
<td width="23%" height="19"> </td>
<td width="21%" height="19"> </td>
<td width="40%" height="19"> </td>
</tr>
<tr>
<td width="16%" height="22"><font face="Arial" size="2">Loan Amount:</font></td>
<td width="23%" height="22">
<select size="1" name="Loan_Amount" style="font-family: Arial; font-size: 10pt" tabindex="1">
<option selected>Please Select</option>
<option>£500</option>
<option>£1,000</option>
<option>£1,500</option>
<option>£2,000</option>
<option>£2,500</option>
<option>£3,000</option>
</select></td>
the rest of the form goes here followed by.
<INPUT TYPE="SUBMIT" VALUE="Submit"> <INPUT TYPE="RESET" VALUE="Clear">
</form>
<p>
</div>
</body>
</html>
When you press submit without putting in a value for the loan it says that the field "n_Amount" should be filled and does not show the full field name.
Please help.
Cheers S.
Everything has an answer, it's just knowing the right question to ask. !!!!