function CheckDetails() 
{

st = document.fbform.Product.value

if (st=="")
{
alert("You forgot to fill in the product")

return false
}





st = document.fbform.Comments.value

if (st=="")

{

alert("You forgot to fill in the comments")
return false


}







st = document.fbform.ContactName.value

if (st=="")

{

alert("You forgot to fill in the your Name")
return false

}

st = document.fbform.JobTitle.value

if (st=="")

{

alert("You forgot to fill in your job title")
return false

}



st = document.fbform.CompanyName.value

if (st=="")

{

alert("You forgot to fill in your Company's name")
return false

}

st = document.fbform.CompanyAddress.value

if (st=="")

{

alert("You forgot to fill in your Company's Address.")
return false

}





st = document.fbform.EmailAddress.value


if (st=="") 
{

alert("You forgot to fill in your Email address") 


return false
}


if (st.indexOf('@',1)==-1)
{

alert("Invalid Email address")
return false
}

if (st.indexOf('.',1)==-1)
{

alert("Invalid Email address")
return false
}


st = document.fbform.TelNo.value

if (st=="")

{

alert("You forgot to fill in your Tel no")
return false

}

st = document.fbform.FaxNo.value

if (st=="")

{

alert("You forgot to fill in your Fax no")
return false

}


  //<div align="center"><center><p><a href="processform.cgi"
  //onmouseover="submit.src=submit2.src" onmouseout="submit.src=submit1.src"
  //onClick="return CheckDetails()"><img src="images/submit1.gif" name="submit" //width="100"
//  height="22" border="0"> </a><img src="images/reset1.gif" value="reset"
//  onmouseover="this.src=reset2.src" onmouseout="this.src=reset1.src"
 // onClick="document.fbform.reset()" width="100" height="22" alt="Reset" border="0"
//  name="Reset"></p>
 // </center></div>


return true

}
