function Contact() {
	var dc = "dc" + Math.floor( Math.random() * 1001 );
	var na = "na" + Math.floor( Math.random() * 1001 );
	var em = "em" + Math.floor( Math.random() * 1001 );
	var ty = "ty" + Math.floor( Math.random() * 1001 );
	var ms = "ms" + Math.floor( Math.random() * 1001 );

	document.write("<form action='x-contact.php' method='post'><input name='"+dc+"' value='1' type='hidden'><table style='color: rgb(8, 8, 8); font-size: 11px;'><tbody><tr><td style='text-align: right;' width='50%'>Your Name &nbsp;</td><td width='50%'>&nbsp; <input name='"+na+"' type='text'></td></tr><tr><td style='text-align: right;' width='50%'>E-mail Address &nbsp;</td><td width='50%'>&nbsp; <input name='"+em+"' type='text'></td></tr><tr><td style='text-align: right;' width='50%'>Your Inquiry Regards &nbsp;</td><td width='50%'>&nbsp; <select name='"+ty+"'><option>Technical Support</option><option>Instalation And Repair On Site</option><option>Supplies, Wear, P/M</option><option>Spare Parts</option><option>ATM Refurbishing</option><option>Training</option></select></td></tr><tr><td colspan='2'>Message:<br><textarea name='"+ms+"' style='width: 450px; height: 100px; font-family: Arial,Helvetica;'></textarea></td></tr><tr><td colspan='2' style='text-align: center;'><input value=' Send  Message ' type='submit'><br></td></tr></tbody></table></form>");
}