
document.writeln("<table width=300 border=0>");

document.writeln("<form name=contract method=post action=/mpost.asp onsubmit='return Check2(this);'>");
document.writeln("  <tr>");
document.writeln("    <td></td>");
document.writeln("    <td>Contract Us</td>");
document.writeln("  </tr>");
document.writeln("  <tr>");
document.writeln("    <td><p align=right><font color=blue>Name</font></p></td>");
document.writeln("    <td><input name=name type=text style='margin-left: 1px' size=30></td>");
document.writeln("  </tr>");
document.writeln("  <tr>");
document.writeln("    <td><p align=right><font color=blue>Email</font></p></td>");
document.writeln("    <td><input name=email type=text style='margin-left: 1px' size=30></td>");
document.writeln("  </tr>");
document.writeln("  <tr>");
document.writeln("    <td><font color=blue>Content</font></td>");
document.writeln("    <td><textarea name=body cols=30 rows=6 style='margin-left: 1px'></textarea></td>");
document.writeln("  </tr>");
document.writeln("  <tr>");
document.writeln("    <td></td>");
document.writeln("    <td><input name=Submit type=image src=/images/send.gif alt=SUBMIT border=0></td>");
document.writeln("  </tr>");
document.writeln("  </form>");
document.writeln("</table>");

function Check2(theForm)
{
if(theForm.name.value=="")
{
	alert("Sorry,fill in the nameŁĄ");
	theForm.name.focus();
	return false;
}

if(theForm.email.value=="")
{
	alert("Sorry,fill in the nameŁĄ");
	theForm.email.focus();
	return false;
}

if(theForm.email.value=="")
{
	alert("Sorry,fill in the contentŁĄ");
	theForm.email.focus();
	return false
}

	return true;
}

