function disp_form()
{
document.write("<form name='quick' method=post action='php/mail.php'><table width='300' border='0' cellspacing='0' cellpadding='0'><tr> <td><table width='100%' border='0' cellspacing='0' cellpadding='0'><tr><td width='27%'><img src='http://www.abcofrealty.com/images/form_01.gif' width='82' height='70' alt='Real Estate, Realty, Home Search, Buy Home, USA Home Search'></td><td width='73%' valign='middle' background='http://www.abcofrealty.com/images/form_01a.gif' class='form-01'><div align='left'><table width='100%' border='0' cellspacing='0' cellpadding='0' style='padding-bottom=5px'><tr><td width='12%' class='form-01'>&nbsp;</td><td width='88%' class='form-01'>Quick Form</td></tr></table></div></td></tr></table></td></tr><tr> <td valign='top' background='http://www.abcofrealty.com/images/form_02.gif'></td></tr><tr> <td valign='top' background='http://www.abcofrealty.com/images/form_02.gif'><form name='form1' method='post' action=''><table width='100%' border='0' cellspacing='0' cellpadding='0'><tr> <td width='14%'>&nbsp;</td><td width='22%' class='form-02'>Name :</td><td width='59%' height='25'><div align='left'> <input type='text' name='Name'></div></td><td width='5%'>&nbsp;</td></tr><tr><td>&nbsp;</td><td class='form-02'>Address :</td><td height='25'><input type='text' name='Address'></td><td>&nbsp;</td></tr><tr><td>&nbsp;</td><td class='form-02'>Zip :</td><td height='25'><input type='text' name='Zip'></td><td>&nbsp;</td></tr><tr> <td>&nbsp;</td><td class='form-02'>Phone :</td><td height='25'><input type='text' name='Phone'></td><td>&nbsp;</td></tr><tr><td>&nbsp;</td><td class='form-02'>E-Mail :</td><td height='25'><input type='text' name='E-mail'></td><td>&nbsp;</td></tr><tr><td>&nbsp;</td><td height='25' colspan='2'><div align='center'><input name='Submit' type='submit' class='form-02' value='Submit'></div></td><td>&nbsp;</td></tr></table></form></td></tr><tr><td><img src='http://www.abcofrealty.com/images/form_03.gif' alt='ABC of Realty, Real Estates in USA, ABCofRealty'></td></tr></table></form>");
var frm=new Validator("quick");
frm.addValidation("Name","req","Please Enter Name");
frm.addValidation("Zip","req","Please Enter Zip");
frm.addValidation("Phone","req","Please Enter Phone");
frm.addValidation("E-mail","req","Please Enter E-mail ID");
frm.addValidation("Address","req","Please Enter Address");

frm.addValidation("Address","minlen=10","Please Enter Proper Address");
frm.addValidation("Phone","num","Please Enter Proper Phone");
frm.addValidation("E-mail","email","Please Enter Proper E-mail ID");
}


