Ti basta copiare questo dentro i tag <head> della pagina
Codice HTML:
<script language="javascript" type="text/javascript">
function Modulo() {
if ((document.modulo.nome.value == "")) {
alert("Il campo Nome è obbligatorio");
document.modulo.nome.focus();
return false;
}
else if ((document.modulo.email.value == "")) {
alert("Il campo Email è obbligatorio");
document.modulo.email.focus();
return false;
}
else if ((document.modulo.messaggio.value == "")) {
alert("Il campo Messaggio è obbligatorio");
document.modulo.messaggio.focus();
return false;
}
else {
document.modulo.action = "mailto.php";
document.modulo.submit();
}
}
</script>
e questo dentro i tag <body>, dove vuoi che compaia
Codice HTML:
<form method="post" name="modulo" action="mailto.php">
<table border="0" bgcolor="#EEEEEE" cellspacing="2" cellpadding="2">
<tr>
<td>Nome:</td>
<td><input type="text" size="36" name="nome" maxlength="30"></td>
</tr>
<tr>
<td>Email:</td>
<td><input type="text" size="36" name="email" maxlength="30"></td>
</tr>
<tr>
<td>Messaggio:</td>
<td><textarea rows="7" cols="30" name="messaggio"></textarea></td>
</tr>
<tr>
<td> </td>
<td><input type="button" value="Invia" onClick="Modulo()"> <input type="reset" value="Reset"></td>
</tr>
</table>
</form>