<html>
<head>
<script type="text/javascript">
function validateForm()
{
var x=document.forms["new customer"]["b_name"].value;
if (x==null || x=="")
{
alert("First name must be filled out");
return false;
}
}
</script>
<script type="text/javascript">
function validateForm()
{
var x=document.forms["new customer"]["b_last"].value;
if (x==null || x=="")
{
alert("Last name must be filled out");
return false;
}
}
</script>
</script>
<script type="text/javascript">
function validateForm()
{
var x=document.forms["new customer"]["b_phone"].value;
if (x==null || x=="")
{
alert("phone must be filled out");
return false;
}
}
</script>
</head>
<body>
<form name="new customer" action="www.ccwa34.com" onsubmit="return
validateForm()" method="post">
First Name: <input type="text" name="b_name">
Last Name: <input type="text" name="b_last">
Phone: <input type="text" name="b_phone">
<input type="submit" value="Submit">
</form>
</body>
</html>
thanks