Question : Classic ASP form to email sending empty email?

Hello, been scratching my head for a while now on this one. Hope I'm just missing something simple here.

Every time I submit this form it sends one email correctly but follows it up with an email that has all the layout text for the body but no variable values?? How can I fix it to stop sending the 2nd useless email?

TIA,
Andrew
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
356:
357:
358:
359:
360:
361:
362:
363:
364:
365:
366:
367:
368:
369:
370:
371:
372:
373:
374:
375:
376:
377:
378:
379:
380:
381:
382:
383:
384:
385:
386:
387:
388:
389:
390:
391:
392:
393:
394:
395:
396:
397:
398:
399:
400:
401:
402:
403:
404:
405:
406:
407:
408:
409:
410:
411:
412:
413:
414:
415:
416:
417:
418:
419:
420:
421:
422:
423:
424:
425:
426:
427:
428:
429:
430:
431:
432:
433:
434:
435:
436:
437:
438:
439:
440:
441:
442:
443:
444:
445:
446:
447:
448:
449:
450:
451:
452:
453:
454:
455:
456:
457:
458:
459:
460:
461:
462:
463:
464:
465:
466:
467:
468:
469:
470:
471:
472:
473:
474:
475:
476:
477:
478:
479:
480:
481:
482:
483:
484:
485:
486:
487:
488:
489:
490:
491:
492:
493:
494:
495:
496:
497:
498:
499:
500:
501:
502:
503:
504:
505:
506:
507:
508:
509:
510:
511:
512:
513:
514:
515:
516:
517:
518:
519:
520:
521:
522:
523:
524:
525:
526:
527:
528:
529:
530:
531:
532:
533:
534:
535:
536:
537:
538:
539:
540:
541:
542:
543:
544:
545:
546:
547:
548:
549:
550:
551:
552:
553:
554:
555:
556:
557:
558:
559:
560:
561:
562:
563:
564:
565:
566:
567:
568:
569:
570:
571:
572:
573:
574:
575:
576:
577:
578:
579:
580:
581:
582:
583:
584:
585:
586:
587:
588:
589:
590:
591:
592:
593:
594:
595:
596:
597:
598:
599:
600:
601:
602:
603:
604:
605:
606:
607:
608:
609:
610:
611:
612:
613:
614:
615:
616:
617:
618:
619:
620:
621:
622:
623:
624:
625:
626:
627:
628:
629:
630:
631:
632:
633:
634:
635:
636:
637:
638:
639:
640:
641:
642:
643:
644:
645:
646:
647:
648:
649:
650:
651:
652:
653:
654:
655:
656:
657:
658:
659:
660:
661:
662:
663:
664:
665:
666:
667:
668:
669:
670:
671:
672:
673:
674:
675:
676:
677:
678:
679:
680:
681:
682:
683:
684:
685:
686:
687:
688:
689:
690:
691:
692:
693:
694:
695:
696:
697:
698:
699:
700:
701:
702:
703:
704:
705:
706:
707:
708:
709:
710:
711:
712:
713:
714:
715:
716:
717:
718:
719:
720:
721:
722:
723:
724:
725:
726:
727:
728:
729:
730:
731:
732:
733:
734:
735:
736:
737:
738:
739:
740:
741:
742:
743:
744:
745:
746:
747:
748:
749:
750:
751:
752:
753:
754:
755:
756:
757:
758:
759:
760:
761:
762:
763:
764:
765:
766:
767:
768:
769:
770:
771:
772:
773:
774:
775:
776:
777:
778:
779:
780:
781:
782:
783:
784:
785:
786:
787:
788:
789:
790:
791:
792:
793:
794:
795:
796:
797:
798:
799:
800:
801:
802:
803:
804:
805:
806:
807:
808:
809:
810:
811:
812:
813:
814:
815:
816:
817:
818:
819:
820:
821:
822:
823:
824:
825:
826:
827:
828:
829:
830:
831:
832:
833:
834:
835:
836:
837:
838:
839:
840:
841:
842:
843:
844:
845:
846:
847:
848:
849:
850:
851:
852:
853:
854:
855:
856:
857:
858:
859:
860:
861:
862:
863:
864:
865:
866:
867:
868:
869:
870:
871:
872:
873:
874:
875:
876:
877:
878:
879:
880:
881:
882:
883:
884:
885:
886:
887:
888:
889:
890:
891:
892:
893:
894:
895:
896:
897:
898:
899:
900:
901:
902:
903:
904:
905:
906:
907:
908:
909:
910:
911:
912:
913:
914:
915:
916:
917:
918:
919:
920:
921:
922:
923:
924:
925:
926:
927:
928:
929:
930:
931:
932:
933:
934:
935:
936:
937:
938:
939:
940:
941:
942:
943:
944:
945:
946:
947:
948:
949:
950:
951:
952:
953:
954:
955:
956:
957:
958:
959:
960:
961:
962:
963:
964:
965:
966:
967:
968:
969:
970:
971:
972:
973:
974:
975:
976:
977:
978:
979:
980:
981:
982:
983:
984:
985:
986:
987:
988:
989:
990:
991:
992:
993:
994:
995:
996:
997:
998:
999:
1000:
1001:
1002:
1003:
1004:
1005:
1006:
1007:
1008:
1009:
1010:
1011:
1012:
1013:
1014:
1015:
1016:
1017:
1018:
1019:
1020:
1021:
1022:
1023:
1024:
1025:
1026:
1027:
1028:
1029:
1030:
1031:
1032:
1033:
1034:
1035:
1036:
1037:
1038:
1039:
1040:
1041:
1042:
1043:
1044:
1045:
1046:
1047:
1048:
1049:
1050:
1051:
1052:
1053:
1054:
1055:
1056:
1057:
1058:
1059:
1060:
1061:
1062:
1063:
1064:
1065:
1066:
1067:
1068:
1069:
1070:
1071:
1072:
1073:
1074:
1075:
1076:
1077:
1078:
1079:
1080:
1081:
1082:
1083:
1084:
1085:
1086:
1087:
1088:
1089:
1090:
1091:
1092:
1093:
1094:
1095:
1096:
1097:
1098:
1099:
1100:
1101:
1102:
1103:
1104:
1105:
1106:
1107:
1108:
1109:
1110:
1111:
1112:
1113:
1114:
1115:
1116:
1117:
1118:
1119:
1120:
1121:
1122:
1123:
1124:
1125:
1126:
1127:
1128:
1129:
1130:
1131:
1132:
1133:
1134:
1135:
1136:
1137:
1138:
1139:
1140:
1141:
1142:
1143:
1144:
1145:
1146:
1147:
1148:
1149:
1150:
1151:
1152:
1153:
1154:
1155:
1156:
1157:
1158:
1159:
1160:
1161:
1162:
1163:
1164:
1165:
1166:
1167:
1168:
1169:
1170:
1171:
1172:
1173:
1174:
1175:
1176:
1177:
1178:
1179:
1180:
1181:
1182:
1183:
1184:
1185:
1186:
1187:
1188:
1189:
1190:
1191:
1192:
1193:
1194:
1195:
1196:
1197:
1198:
1199:
1200:
1201:
1202:
1203:
1204:
1205:
1206:
1207:
1208:
1209:
1210:
1211:
1212:
1213:
1214:
1215:
1216:
1217:
1218:
1219:
1220:
1221:
1222:
1223:
1224:
1225:
1226:
1227:
1228:
1229:
1230:
1231:
1232:
1233:
1234:
1235:
1236:
1237:
1238:
1239:
1240:
1241:
1242:
1243:
1244:
1245:
1246:
1247:
1248:
1249:
1250:
1251:
1252:
1253:
1254:
1255:
1256:
1257:
1258:
1259:
1260:
1261:
1262:
1263:
1264:
1265:
1266:
1267:
1268:
1269:
1270:
1271:
1272:
1273:
1274:
1275:
1276:
1277:
1278:
1279:
1280:
1281:
1282:
1283:
1284:
1285:
1286:
1287:
1288:
1289:
1290:
1291:
1292:
1293:
1294:
1295:
1296:
1297:
1298:
1299:
1300:
1301:
1302:
1303:
1304:
1305:
1306:
1307:
1308:
1309:
1310:
1311:
1312:
1313:
1314:
1315:
1316:
1317:
1318:
1319:
1320:
1321:
1322:
1323:
1324:
1325:
1326:
1327:
1328:
1329:
1330:
1331:
1332:
1333:
1334:
1335:
1336:
1337:
1338:
1339:
1340:
1341:
1342:
1343:
1344:
1345:
1346:
1347:
1348:
1349:
1350:
1351:
1352:
1353:
1354:
1355:
1356:
1357:
1358:
1359:
1360:
1361:
1362:
1363:
1364:
1365:
1366:
1367:
1368:
1369:
1370:
1371:
1372:
1373:
1374:
1375:
1376:
1377:
1378:
1379:
1380:
1381:
1382:
1383:
1384:
1385:
1386:
1387:
1388:
1389:
1390:
1391:
1392:
1393:
1394:
1395:
1396:
1397:
1398:
1399:
1400:
1401:
1402:
1403:
1404:
1405:
1406:
1407:
1408:
1409:
1410:
1411:
1412:
1413:
1414:
1415:
1416:
1417:
1418:
1419:
1420:
1421:
1422:
1423:
1424:
1425:
1426:
1427:
1428:
1429:
1430:
1431:
1432:
1433:
1434:
1435:
1436:
1437:
1438:
1439:
1440:
1441:
1442:
1443:
1444:
1445:
1446:
1447:
1448:
1449:
1450:
1451:
1452:
1453:
1454:
1455:
1456:
1457:
1458:
1459:
1460:
1461:
1462:
1463:
1464:
1465:
1466:
1467:
1468:
1469:
1470:
1471:
1472:
1473:
1474:
1475:
1476:
1477:
1478:
1479:
1480:
1481:
1482:
1483:
1484:
1485:
1486:
1487:
1488:
1489:
1490:
1491:
1492:
1493:
1494:
1495:
1496:
1497:
1498:
1499:
1500:
1501:
1502:
1503:
1504:
1505:
1506:
1507:
1508:
1509:
1510:
1511:
1512:
1513:
1514:
1515:
1516:
1517:
1518:
1519:
1520:
1521:
1522:
1523:
1524:
1525:
1526:
1527:
1528:
1529:
1530:
1531:
1532:
1533:
1534:
1535:
1536:
1537:
1538:
1539:
1540:
1541:
1542:
1543:
1544:
1545:
1546:
1547:
1548:
1549:
1550:
1551:
1552:
1553:
1554:
1555:
1556:
1557:
1558:
1559:
1560:
1561:
1562:
1563:
1564:
1565:
1566:
1567:
1568:
1569:
1570:
1571:
1572:
1573:
1574:
1575:
1576:
1577:
1578:
1579:
1580:
1581:
1582:
1583:
1584:
1585:
1586:
1587:
1588:
1589:
1590:
1591:
1592:
1593:
1594:
1595:
1596:
1597:
1598:
1599:
1600:
1601:
1602:
1603:
1604:
1605:
1606:
1607:
1608:
1609:
1610:
1611:
1612:
1613:
1614:
1615:
1616:
1617:
1618:
1619:
1620:
1621:
1622:
1623:
1624:
1625:
1626:
1627:
1628:
1629:
1630:
1631:
1632:
1633:
1634:
1635:
1636:
1637:
1638:
1639:
1640:
1641:
1642:
1643:
1644:
1645:
1646:
1647:
1648:
1649:
1650:
1651:
1652:
1653:
1654:
1655:
1656:
1657:
1658:
1659:
1660:
1661:
1662:
1663:
1664:
1665:
1666:
1667:
1668:
1669:
1670:
1671:
1672:
1673:
1674:
1675:
1676:
1677:
1678:
1679:
1680:
1681:
1682:
1683:
1684:
1685:
1686:
1687:
1688:
1689:
1690:
1691:
1692:
1693:
1694:
1695:
1696:
1697:
1698:
1699:
1700:
1701:
1702:
1703:
1704:
1705:
1706:
1707:
1708:
1709:
1710:
1711:
1712:
1713:
1714:
1715:
1716:
1717:
1718:
1719:
1720:
1721:
1722:
1723:
1724:
1725:
1726:
1727:
1728:
1729:
1730:
1731:
1732:
1733:
1734:
1735:
1736:
1737:
1738:
1739:
1740:
1741:
1742:
1743:
1744:
1745:
1746:
1747:
1748:
1749:
1750:
1751:
1752:
1753:
1754:
1755:
1756:
1757:
1758:
1759:
1760:
1761:
1762:
1763:
1764:
1765:
1766:
1767:
1768:
1769:
1770:
1771:
1772:
1773:
1774:
1775:
1776:
1777:
1778:
1779:
1780:
1781:
1782:
1783:
1784:
1785:
1786:
1787:
1788:
1789:
1790:
1791:
1792:
1793:
1794:
1795:
1796:
1797:
1798:
1799:
1800:
1801:
1802:
1803:
1804:
1805:
1806:
1807:
1808:
1809:
1810:
1811:
1812:
1813:
1814:
1815:
1816:
1817:
1818:
1819:
1820:
1821:
1822:
1823:
1824:
1825:
1826:
1827:
1828:
1829:
1830:
1831:
1832:
1833:
1834:
1835:
1836:
1837:
1838:
1839:
1840:
1841:
1842:
1843:
1844:
1845:
1846:
1847:
1848:
1849:
1850:
1851:
1852:
1853:
1854:
1855:
1856:
1857:
1858:
1859:
1860:
1861:
1862:
1863:
1864:
1865:
1866:
1867:
1868:
1869:
1870:
1871:
1872:
1873:
1874:
1875:
1876:
1877:
1878:
1879:
1880:
1881:
1882:
1883:
1884:
1885:
1886:
1887:
1888:
1889:
1890:
1891:
1892:
1893:
1894:
1895:
1896:
1897:
1898:
1899:
1900:
1901:
1902:
1903:
1904:
1905:
1906:
1907:
1908:
1909:
1910:
1911:
1912:
1913:
1914:
1915:
1916:
1917:
1918:
1919:
1920:
1921:
1922:
1923:
1924:
1925:
1926:
1927:
1928:
1929:
1930:
1931:
1932:
1933:
1934:
1935:
1936:
1937:
1938:
1939:
1940:
1941:
1942:
1943:
1944:
1945:
1946:
1947:
1948:
1949:
1950:
1951:
1952:
1953:
1954:
1955:
1956:
1957:
1958:
1959:
1960:
1961:
1962:
1963:
1964:
1965:
1966:
1967:
1968:
1969:
1970:
1971:
1972:
1973:
1974:
1975:
1976:
1977:
1978:
1979:
1980:
1981:
1982:
1983:
1984:
1985:
1986:
1987:
1988:
1989:
1990:
1991:
1992:
1993:
1994:
1995:
1996:
1997:
1998:
1999:
2000:
2001:
2002:
2003:
2004:
2005:
2006:
2007:
2008:
2009:
2010:
2011:
2012:
2013:
2014:
2015:
2016:
2017:
2018:
2019:
2020:
<html>

<head>
<meta content="IE=EmulateIE7" http-equiv="X-UA-Compatible">
<meta content="General" name="rating">
<meta content="EN-US" name="MS.LOCALE">
<meta content="index,follow" name="robots">
<meta content="http://www.massageluxe.com" name="URL">
<meta content="31 days" name="revisit-after">
<meta content="TRUE" name="MSSmartTagsPreventParsing">
<meta content="MassageLuxe" name="Title">
<meta content="Our mission at MassageLuxe is to deliver the highest quality massage by providing a comfortable, relaxing, and luxurious environment to all of our clients. MassageLuxe offers many different types of massage." name="description">
<meta content="massage, massage therapy, couples massage, massage membership, swedish massage, deep tissue, relaxation, gift cards, massageluxe, relax, membership, members" name="keywords">
<title>Massageluxe - Application Page 1</title>
<link href="favicon.ico" rel="shortcut icon">
<link href="css/style.css" rel="stylesheet" type="text/css">
<link href="favicon.ico" rel="shortcut icon">
<script type="text/javascript"> 
function validate(form) { 
if (document.form1.EmailAddress.value == "")
	{
	alert("Please enter a valid EMAIL ADDRESS. A copy of this application will be forwarded to it upon submission of this form for your records."); 
	return false; 
	}
else if (!document.form1.Agree.checked)
	{
	alert("Please check the terms and conditions"); 
	return false; 
	}
else if (document.form1.Name.value == "")
	{
	alert("Please digitally sign for the terms and conditons"); 
	return false; 
	}
else
	{
	return true;
	}
}
</script>
<style type="text/css">
.style18 {
	background-image: url('images/ML-Banner.jpg');
	text-align: center;
}
.style19 {
	background-image: url('images/Navigation/Careers-Nav.jpg');
}
.style40 {
	border-width: 0;
	font-size: 16pt;
}
.style44 {
	text-align: center;
	color: #2A7782;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
}
.style49 {
	background-image: url('images/Body Misc/app_background.jpg');
}
.style46 {
	color: #000000;
}
.style54 {
	border-width: 0px;
	font-size: 16pt;
}
.style55 {
	font-size: 10pt;
}
.style56 {
	font-family: Arial, Helvetica, sans-serif;
}
.style26 {
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 8pt;
}
.style48 {
	color: #B6A790;
	font-size: 8pt;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bolder;
}
.style41 {
	color: #FFFFFF;
	font-size: 8pt;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bolder;
}
.style22 {
	color: #FFFFFF;
	font-size: 10pt;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bolder;
}
.style57 {
	color: #FFFFFF;
	font-size: 10pt;
}
.style58 {
	color: #FFFFFF;
	font-size: 14pt;
}
#table19 {
	margin-left: 0px;
}
#table27 {
}
#table43 {
}
#table35 {
}
.style59 {
	color: #FF0000;
	font-size: 14pt;
}
.style60 {
	font-weight: bold;
	text-align: justify;
}
</style>
</head>

<body style="margin: 0px; font-family: Arial, Helvetica, sans-serif;">

<div align="center">
	<font face="Georgia">
	<div align="center">
		<table id="table1" border="0" cellpadding="0" cellspacing="0" width="827px">
			<tr>
				<td class="style18" style="height: 140px;" valign="top">
				<a href="default.htm">
				<img alt="MassageLuxe" class="style40" height="135px" src="images/clrBanner.gif" width="815px"></a></td>
			</tr>
			<tr>
				<td class="style19" style="height: 4;">
				<map id="FPMap1" name="FPMap1">
				<area coords="714, 4, 826, 33" href="Franchise.htm" shape="rect">
				<area coords="509, 4, 593, 33" href="Careers.htm" shape="rect">
				<area coords="604, 4, 702, 33" href="https://pconsite4.pconsite.com/CMS_MassageLuxe/POS/giftcards/onlinegiftcardcustomersearch.aspx" shape="rect" target="_blank">
				<area coords="404, 4, 499, 33" href="LocationsMO.htm" shape="rect">
				<area coords="306, 4, 392, 33" href="AboutUs.htm" shape="rect">
				<area coords="179, 4, 293, 33" href="Memberships.htm" shape="rect">
				<area coords="82, 4, 166, 33" href="Services.htm" shape="rect">
				<area coords="0, 4, 68, 33" href="default.htm" shape="rect">
				</map>
				<img alt="MassageLuxe" class="style54" height="39px" src="images/ClearMenu.gif" usemap="#FPMap1" width="827px"></td>
			</tr>
		</table>
	</div>
	</font></div>
<form action="application_thankyou.asp" method="post" name="form1" onsubmit="return validate(this)">
	<table id="table2" align="center" cellpadding="0" cellspacing="0" style="width: 827px;">
		<tr>
			<td valign="top">
			<table align="left" cellpadding="0" cellspacing="" class="style49" style="width: 827px;">
				<tr>
					<td class="style44" style="height: 375px" valign="top">
					<table id="table12" border="0" cellpadding="0" cellspacing="0" width="645">
						<tr>
							<td rowspan="2" style="width: 45px"><b>&nbsp;</b></td>
							<td height="5" nowrap valign="TOP">
							<table id="table13" border="0" cellpadding="0" cellspacing="0" width="554">
								<tr>
									<td class="style58" style="height: 60px" width="">
									Employment Application</td>
								</tr>
								<tr>
									<td class="style57" width="">Equal access to 
									programs, services and employment is available 
									to all persons. Those applicants requiring reasonable 
									accommodation to the application and / or interview 
									process should notify a representative of the 
									Human Resources Department. </td>
								</tr>
							</table>
							<b><font size="1"><br></font><font size="2">Location 
							applied for</font> </b></td>
						</tr>
						<tr>
							<td nowrap valign="TOP" width="387">
							<table id="table14" border="0" cellpadding="0" cellspacing="0" width="500">
								<tr>
									<td style="height: 15px">
									<font face="Tahoma">
									<select class="style56" name="LocationsApplied" size="1" style="height: 22px">
									<option selected="">...</option>
									<option>Brenneman Farm, VA</option>
									<option>Brentwood, MO</option>
									<option>Chesterfield, MO</option>
									<option>Creve Coeur, MO</option>
									<option>Kirkwood, MO</option>
									<option>La Promenade, VA</option>
									<option>Osage Beach, MO</option>
									<option>Rock Hill, MO</option>
									</select></font> </td>
								</tr>
								<tr>
									<td height="15"><b><font size="2">Position applied 
									for</font> </b></td>
								</tr>
								<tr>
									<td><font face="Tahoma">
									<select class="style56" name="Positions" size="1">
									<option selected="">...</option>
									<option>Massage Therapist</option>
									<option>Sales Consultant/ Receptionist
									</option>
									</select></font></td>
								</tr>
							</table>
							<table id="table15" border="0" cellpadding="0" cellspacing="0">
								<tr>
									<td class="style55" height="15"><strong>First 
									Name&nbsp; </strong></td>
									<td nowrap rowspan="2" width="5"></td>
									<td class="style55"><strong>Last Name
									</strong></td>
									<td nowrap rowspan="2" width="5"></td>
								</tr>
								<tr>
									<td><font face="Tahoma">
									<input class="style56" maxlength="50" name="FirstName" size="14" style="font-weight: 700"></font></td>
									<td><font face="Tahoma">
									<input class="style56" maxlength="50" name="LastName" size="20" style="font-weight: 700"></font></td>
								</tr>
							</table>
							<table id="table16" border="0" cellpadding="0" cellspacing="0">
								<tr>
									<td class="style55" height="15"><strong>Address
									</strong></td>
								</tr>
								<tr>
									<td><font face="Tahoma">
									<input class="style56" maxlength="50" name="Address" size="30" style="font-weight: 700"></font></td>
								</tr>
								<tr>
									<td class="style55" height="2" nowrap>
									<strong>Address 2</strong></td>
								</tr>
								<tr>
									<td><font face="Tahoma">
									<input class="style56" maxlength="50" name="Address2" size="30" style="font-weight: 700"></font></td>
								</tr>
							</table>
							<table id="table17" border="0" cellpadding="0" cellspacing="0">
								<tr>
									<td class="style55" height="15"><strong>Town/City
									</strong></td>
									<td nowrap rowspan="2" width="5"></td>
									<td align="CENTER"><font size="2"><strong>State
									</strong></font></td>
									<td nowrap rowspan="2" width="5"></td>
									<td><font size="2"><strong>Zip</strong><span class="style29"><strong>
									</strong></span></font></td>
								</tr>
								<tr>
									<td><font face="Tahoma">
									<input class="style56" maxlength="50" name="City" size="20" style="font-weight: 700"></font></td>
									<td align="CENTER"><font face="Tahoma">
									<input class="style56" maxlength="2" name="State" size="2" style="font-weight: 700"></font></td>
									<td><font face="Tahoma">
									<input class="style56" maxlength="5" name="Zip" size="5" style="font-weight: 700"></font></td>
								</tr>
							</table>
							<table id="table19" border="0" cellpadding="0" cellspacing="0">
								<tr>
									<td class="style28" colspan="4" height="15">
									<font size="2"><strong>Daytime Phone</strong></font><font size="1">
									</font></td>
								</tr>
								<tr>
									<td><font face="Tahoma">
									<input class="style56" maxlength="3" name="DayArea" size="3" style="font-weight: 700"></font></td>
									<td><font face="Tahoma">
									<input class="style56" maxlength="8" name="DayPhone" size="8" style="font-weight: 700"></font></td>
									<td><b><font size="1">Ext.</font></b></td>
									<td><font face="Tahoma">
									<input class="style56" maxlength="5" name="DayExt" size="5" style="font-weight: 700"></font></td>
								</tr>
								<tr>
									<td class="style55" colspan="2" height="17">
									<strong>Evening Phone </strong></td>
								</tr>
								<tr>
									<td><font face="Tahoma">
									<input class="style56" maxlength="3" name="NightArea" size="3" style="font-weight: 700"></font></td>
									<td><font face="Tahoma">
									<input class="style56" maxlength="8" name="NightPhone" size="8" style="font-weight: 700"></font></td>
								</tr>
								<tr>
									<td colspan="2"><b><font size="2">Mobile/Other 
									Phone<span class="style29"> </span></font>
									</b></td>
								</tr>
								<tr>
									<td><font face="Tahoma">
									<input class="style56" maxlength="3" name="MobileArea" size="3" style="font-weight: 700"></font></td>
									<td><font face="Tahoma">
									<input class="style56" maxlength="8" name="MobilePhone" size="8" style="font-weight: 700"></font></td>
								</tr>
							</table>
							<table id="table20" border="0" cellpadding="0" cellspacing="0">
								<tr>
									<td class="style28" height="15">
									<font size="2"><strong>Email Address</strong><span lang="en-us"><strong>
									</strong></span></font><span lang="en-us">
									<strong><span class="style59">*</span></strong></span></td>
								</tr>
							</table>
							<table id="table21" border="0" cellpadding="0" cellspacing="0">
								<tr>
									<td><font face="Tahoma">
									<input class="style56" maxlength="150" name="EmailAddress" size="20" style="font-weight: 700"></font></td>
								</tr>
								<tr>
									<td>&nbsp;</td>
								</tr>
							</table>
							</td>
						</tr>
					</table>
					</td>
				</tr>
				<tr>
					<td class="style44" valign="top">
					<table align="center" cellpadding="10" cellspacing="0" style="width: 80%">
						<tr>
							<td style="font-size: 10pt"><font face="Tahoma">
							<table id="table11" border="0" cellpadding="0" cellspacing="0" width="645">
								<tr>
									<td width="45"><b>&nbsp;</b></td>
									<td nowrap style="font-size: 10pt" valign="TOP" width="287">
									<table id="table12" border="0" cellpadding="0" cellspacing="0" width="262">
										<tr>
											<td colspan="3" height="15"><b>
											<font size="1"><strong>If you are under 
											18, and it is required, can you furnish 
											a work permit?</strong></font></b><strong></strong></td>
										</tr>
										<tr>
											<td width="63"><font face="Tahoma">
											<input checked name="WorkPermit" style="font-weight: 700" type="radio" value="Yes"></font><b>
											<font size="1">yes</font> </b></td>
											<td width="5">&nbsp;</td>
											<td width="194">
											<font face="Tahoma" size="1">
											<input name="WorkPermit" style="font-weight: 700" type="radio" value="No"></font><b><font size="1"> 
											no</font></b></td>
										</tr>
										<tr>
											<td colspan="3"><b><font size="1">If 
											no, please explain</font></b></td>
										</tr>
										<tr>
											<td colspan="3"><font face="Tahoma">
											<strong>
											<textarea cols="30" name="WorkPermitWhy" rows="3" style="font-weight: 700"></textarea></strong></font></td>
										</tr>
									</table>
									<br class="style28">
									<table id="table13" border="0" cellpadding="0" cellspacing="0" width="262">
										<tr>
											<td colspan="3" height="15"><b>
											<font size="1">Have you ever been employed 
											here before?</font></b></td>
										</tr>
										<tr>
											<td width="63"><font face="Tahoma">
											<input checked name="PreviouslyEmployed" style="font-weight: 700" type="radio" value="Yes"></font><b>
											<font size="1">yes</font> </b></td>
											<td width="5">&nbsp;</td>
											<td width="194"><font face="Tahoma">
											<input name="PreviouslyEmployed" style="font-weight: 700" type="radio" value="No"></font><b>
											<font size="1">no</font></b></td>
										</tr>
										<tr>
											<td colspan="3"><b><font size="1">If 
											yes, give dates and positions</font></b></td>
										</tr>
										<tr>
											<td colspan="3"><font face="Tahoma">
											<textarea cols="30" name="PreviouslyEmployedWhen" rows="3" style="font-weight: 700"></textarea></font></td>
										</tr>
									</table>
									<br class="style28">
									<table id="table14" border="0" cellpadding="0" cellspacing="0" width="262">
										<tr>
											<td colspan="3" height="15"><b>
											<font size="1">Are you legally eligible 
											for employment in this country?</font></b></td>
										</tr>
										<tr>
											<td width="63"><font face="Tahoma">
											<input checked name="LegallyEligible" style="font-weight: 700" type="radio" value="Yes"></font><b>
											<font size="1">yes</font> </b></td>
											<td width="5">&nbsp;</td>
											<td width="194"><font face="Tahoma">
											<input name="LegallyEligible" style="font-weight: 700" type="radio" value="No"></font><b>
											<font size="1">no</font></b></td>
										</tr>
										<tr>
											<td colspan="3" width="262">&nbsp;</td>
										</tr>
										<tr>
											<td colspan="3" width="262">
											<span lang="en-us"><font size="1">
											<b>License #</b></font></span></td>
										</tr>
										<tr>
											<td colspan="3" width="262">
											<input name="LicenseNumber" size="32" style="font-weight: 700"></td>
										</tr>
									</table>
									<br class="style28">
									<table id="table15" border="0" cellpadding="0" cellspacing="0" width="262">
										<tr>
											<td height="15"><b><font size="1">Date 
											available for work</font></b></td>
										</tr>
										<tr>
											<td>
											<table id="table16" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td><b><font size="1">Month:</font>
													</b></td>
													<td></td>
													<td><b><font size="1">Day:</font>
													</b></td>
													<td></td>
													<td><b><font size="1">Year:</font>
													</b></td>
												</tr>
												<tr>
													<td><font face="Tahoma">
													<select name="AvailableMonth" style="font-weight: 700">
													<option selected="" value="0">
													Month</option>
													<option value="January">January
													</option>
													<option value="February">February
													</option>
													<option value="March">March
													</option>
													<option value="April">April
													</option>
													<option value="May">May
													</option>
													<option value="June">June
													</option>
													<option value="July">July
													</option>
													<option value="August">August
													</option>
													<option value="September">September
													</option>
													<option value="October">October
													</option>
													<option value="November">November
													</option>
													<option value="December">December
													</option>
													</select></font></td>
													<td></td>
													<td><font face="Tahoma">
													<select name="AvailableDay" style="font-weight: 700">
													<option selected="" value="0">
													Day</option>
													<option value="1">1</option>
													<option value="2">2</option>
													<option value="3">3</option>
													<option value="4">4</option>
													<option value="5">5</option>
													<option value="6">6</option>
													<option value="7">7</option>
													<option value="8">8</option>
													<option value="9">9</option>
													<option value="10">10
													</option>
													<option value="11">11
													</option>
													<option value="12">12
													</option>
													<option value="13">13
													</option>
													<option value="14">14
													</option>
													<option value="15">15
													</option>
													<option value="16">16
													</option>
													<option value="17">17
													</option>
													<option value="18">18
													</option>
													<option value="19">19
													</option>
													<option value="20">20
													</option>
													<option value="21">21
													</option>
													<option value="22">22
													</option>
													<option value="23">23
													</option>
													<option value="24">24
													</option>
													<option value="25">25
													</option>
													<option value="26">26
													</option>
													<option value="27">27
													</option>
													<option value="28">28
													</option>
													<option value="29">29
													</option>
													<option value="30">30
													</option>
													<option value="31">31
													</option>
													</select></font></td>
													<td></td>
													<td><font face="Tahoma">
													<select name="AvailableYear" style="font-weight: 700">
													<option selected="" value="0">
													Year</option>
													<option value="2003">2003
													</option>
													<option value="2004">2004
													</option>
													<option value="2005">2005
													</option>
													<option value="2006">2006
													</option>
													<option value="2007">2007
													</option>
													<option value="2008">2008
													</option>
													<option value="2009">2009
													</option>
													</select></font></td>
												</tr>
											</table>
											</td>
										</tr>
										<tr>
											<td><b><font size="1"><br>What is your 
											desired salary range?</font></b></td>
										</tr>
										<tr>
											<td></strong><font face="Tahoma">
											<strong>
											<input maxlength="50" name="DesiredSalary" size="30" style="font-weight: 700"></strong></font></td>
										</tr>
									</table>
									</td>
									<td nowrap valign="TOP" width="288">
									<table id="table17" border="0" cellpadding="0" cellspacing="0" width="291">
										<tr>
											<td colspan="5" height="15"><b>
											<font size="1">Type of employment desired</font></b></td>
										</tr>
										<tr>
											<td width="85"><font face="Tahoma">
											<input name="Full-Time" style="font-weight: 700" type="checkbox"></font><b>
											<font size="1">Full-Time</font> </b>
											</td>
											<td width="5">&nbsp;</td>
											<td width="85"><font face="Tahoma">
											<input name="Part-Time" style="font-weight: 700" type="checkbox"></font><b>
											<font size="1">Part-Time</font></b></td>
											<td width="5">&nbsp;</td>
											<td width="94"><font face="Tahoma">
											<input name="Temporary" style="font-weight: 700" type="checkbox"></font><b>
											<font size="1">Temporary</font></b></td>
										</tr>
										<tr>
											<td><font face="Tahoma">
											<input name="Seasonal" style="font-weight: 700" type="checkbox"></font><b>
											<font size="1">Seasonal</font> </b>
											</td>
											<td>&nbsp;</td>
											<td colspan="3"><font face="Tahoma">
											<input name="Educational" style="font-weight: 700" type="checkbox"></font><b>
											<font size="1">Educational Co-Op
											</font></b></td>
										</tr>
									</table>
									<br class="style28">
									<table id="table18" border="0" cellpadding="0" cellspacing="0" width="262">
										<tr>
											<td colspan="3" height="15"><b>
											<font size="1">Are you able to meet 
											the requirements of the position?</font></b></td>
										</tr>
										<tr>
											<td width="63"><font face="Tahoma">
											<input checked name="MeetRequirements" style="font-weight: 700" type="radio" value="Yes"></font><b>
											<font size="1">yes</font> </b></td>
											<td width="5">&nbsp;</td>
											<td width="194"><font face="Tahoma">
											<input name="MeetRequirements" style="font-weight: 700" type="radio" value="No"></font><b>
											<font size="1">No</font></b></td>
										</tr>
									</table>
									<br class="style28">
									<table id="table19" border="0" cellpadding="0" cellspacing="0" width="262">
										<tr>
											<td colspan="3" height="15"><b>
											<font size="1">Have you ever pled &quot;guilty&quot; 
											or &quot;no contest&quot; to, or been convicted 
											of a crime?</font></b></td>
										</tr>
										<tr>
											<td height="21" width="63">
											<font face="Tahoma">
											<input checked name="Convicted" style="font-weight: 700" type="radio" value="Yes"></font><b>
											<font size="1">yes</font> </b></td>
											<td height="21" width="5">&nbsp;</td>
											<td height="21" width="194">
											<font face="Tahoma">
											<input name="Convicted" style="font-weight: 700" type="radio" value="No"></font><b>
											<font size="1">No</font></b></td>
										</tr>
										<tr>
											<td colspan="3"><font size="1">If yes 
											please provide date(s) and details<br>
											<font class="style46">ANSWERING &quot;YES&quot; 
											TO THESE QUESTIONS DOES NOT CONSTITUTE 
											AN AUTOMATIC BAR TO EMPLOYMENT. FACTORS 
											SUCH AS DATE OF THE OFFENSE, SERIOUSNESS 
											AND NATURE OF THE VIOLATION, REHABILITATION 
											AND POSITION APPLIED FOR WILL BE TAKEN 
											INTO CONSIDERATION </font></font>
											</td>
										</tr>
										<tr>
											<td colspan="3"><font face="Tahoma">
											<textarea cols="30" name="ConvictedWhen" rows="3" style="font-weight: 700"></textarea></font></td>
										</tr>
									</table>
									<br class="style28">
									<table id="table20" border="0" cellpadding="0" cellspacing="0" width="262">
										<tr>
											<td><b><font size="1">Drivers license 
											number if driving is an essential job 
											function</font></b></td>
										</tr>
										<tr>
											<td><font face="Tahoma">
											<input maxlength="50" name="DriversLicenseNumber" size="30" style="font-weight: 700"></font></td>
										</tr>
									</table>
									<p class="style29">&nbsp;</p>
									</td>
								</tr>
							</table>
							</font></td>
						</tr>
					</table>
					</td>
				</tr>
				<tr>
					<td class="style44" valign="top">
					<table align="center" cellpadding="10" cellspacing="0" style="width: 80%">
						<tr>
							<td valign="top"><font face="Tahoma">
							<table id="table11" border="0" cellpadding="0" cellspacing="0" width="645">
								<tr>
									<td width="45"><b>&nbsp;</b></td>
									<td align="left" height="1486" nowrap>
									<table id="table12" border="0" cellpadding="0" cellspacing="0" width="583">
										<tr align="left" valign="top">
											<td height="7" width="258"><b>
											<font size="2">1:</font></b></td>
											<td width="325"><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
											</b></td>
										</tr>
										<tr align="left" valign="top">
											<td height="8"><b><font size="1">From</font></b></td>
											<td><b><font size="1">Employer</font></b></td>
										</tr>
										<tr align="left" valign="top">
											<td>
											<table id="table13" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td><b><font size="1">Month:</font>
													</b></td>
													<td></td>
													<td><b><font size="1">Day:</font>
													</b></td>
													<td></td>
													<td><b><font size="1">Year:</font>
													</b></td>
												</tr>
												<tr>
													<td><font face="Tahoma">
													<input maxlength="2" name="FromMonth1" size="2" style="font-weight: 700" /></font><b> 
													/</b></td>
													<td></td>
													<td><font face="Tahoma">
													<input maxlength="2" name="FromDay1" size="2" style="font-weight: 700" /></font><b> 
													/</b></td>
													<td></td>
													<td><font face="Tahoma">
													<input maxlength="4" name="FromYear1" size="4" style="font-weight: 700" /></font></td>
												</tr>
											</table>
											</td>
											<td><font face="Tahoma">
											<input maxlength="150" name="Employer1" size="30" style="font-weight: 700" /></font></td>
										</tr>
										<tr align="left" valign="top">
											<td><b><font size="1">To:</font></b></td>
											<td><b><font size="1">Telephone</font></b></td>
										</tr>
										<tr align="left" valign="top">
											<td>
											<table id="table14" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td><b><font size="1">Month:</font>
													</b></td>
													<td></td>
													<td><b><font size="1">Day:</font>
													</b></td>
													<td></td>
													<td><b><font size="1">Year:</font>
													</b></td>
												</tr>
												<tr>
													<td><font face="Tahoma">
													<input maxlength="2" name="ToMonth1" size="2" style="font-weight: 700" /></font><b> 
													/</b></td>
													<td></td>
													<td><font face="Tahoma">
													<input maxlength="2" name="ToDay1" size="2" style="font-weight: 700" /></font><b> 
													/</b></td>
													<td></td>
													<td><font face="Tahoma">
													<input maxlength="4" name="ToYear1" size="4" style="font-weight: 700" /></font></td>
												</tr>
											</table>
											</td>
											<td>
											<table id="table15" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td><font face="Tahoma">
													<input maxlength="3" name="EmployerArea1" size="3" style="font-weight: 700" /></font></td>
													<td><font face="Tahoma">
													<input maxlength="8" name="EmployerPhone1" size="8" style="font-weight: 700" /></font></td>
													<td><b><font size="1">Ext.</font></b></td>
													<td><font face="Tahoma">
													<input maxlength="5" name="EmployerExt1" size="5" style="font-weight: 700" /></font></td>
												</tr>
											</table>
											</td>
										</tr>
										<tr align="left" valign="top">
											<td><b><font size="1"><br>Starting Job 
											Title/Final Job title</font></b></td>
											<td valign="bottom"><b>
											<font size="1">Address</font></b></td>
										</tr>
										<tr align="left" valign="top">
											<td>
											<table id="table16" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td><font face="Tahoma">
													<input maxlength="30" name="StartingJobTitle1" size="30" style="font-weight: 700" /></font></td>
												</tr>
												<tr>
													<td height="2" nowrap></td>
												</tr>
												<tr>
													<td><font face="Tahoma">
													<input maxlength="30" name="FinalJobTitle1" size="30" style="font-weight: 700" /></font></td>
												</tr>
											</table>
											</td>
											<td>
											<table id="table17" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td><font face="Tahoma">
													<input maxlength="30" name="EmployerAddress1" size="30" style="font-weight: 700" /></font></td>
												</tr>
												<tr>
													<td height="2" nowrap></td>
												</tr>
												<tr>
													<td><font face="Tahoma">
													<input maxlength="30" name="EmployerAddress21" size="30" style="font-weight: 700" /></font></td>
												</tr>
											</table>
											</td>
										</tr>
										<tr align="left" valign="top">
											<td valign="bottom"><b>
											<font size="1">Immediate supervisor 
											and title</font></b></td>
											<td valign="bottom"><b>
											<font size="1"><br>Summarize nature 
											of work performed and job responsibilities</font></b></td>
										</tr>
										<tr align="left" valign="top">
											<td><font face="Tahoma">
											<input name="Supervisor1" size="30" style="font-weight: 700" /></font></td>
											<td rowspan="2"><font face="Tahoma">
											<textarea cols="30" name="WorkSummary1" rows="3" style="font-weight: 700"></textarea></font></td>
										</tr>
										<tr align="left" valign="top">
											<td>
											<table id="table18" border="0" cellpadding="0" cellspacing="0" width="211">
												<tr>
													<td colspan="5"><b>
													<font size="1">May we contact 
													for reference?</font> </b>
													</td>
												</tr>
												<tr>
													<td><font face="Tahoma">
													<input checked name="MayWeContact1" style="font-weight: 700" type="radio" value="Yes" /></font><b>
													<font size="1">Yes</font>
													</b></td>
													<td></td>
													<td><font face="Tahoma">
													<input name="MayWeContact1" style="font-weight: 700" type="radio" value="No" /></font><b>
													<font size="1">No</font></b></td>
													<td></td>
													<td><font face="Tahoma">
													<input name="MayWeContact1" style="font-weight: 700" type="radio" value="Later" /></font><b>
													<font size="1">Later</font></b></td>
												</tr>
											</table>
											</td>
										</tr>
										<tr align="left" valign="top">
											<td><b><font size="1">Reason for leaving</font></b></td>
											<td><b><font size="1">Hourly rate/Salary
											</font></b></td>
										</tr>
										<tr align="left" valign="top">
											<td><font face="Tahoma">
											<input name="ReasonForLeaving1" size="30" style="font-weight: 700" /></font></td>
											<td>
											<table id="table19" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td style="height: 19px" width="70">
													<b><font size="1">&nbsp;&nbsp; 
													Start</font></b></td>
													<td style="height: 19px"><b>
													<font size="1">Per</font></b></td>
													<td style="height: 19px"><b>
													<font size="1">&nbsp;&nbsp; 
													Final</font></b></td>
													<td style="height: 19px"><b>
													<font size="1">Per</font></b></td>
												</tr>
												<tr>
													<td><font size="1">$ </font>
													<b>
													<font face="Tahoma" size="1">
													<input name="StartingAmount1" size="5" /></font></b></td>
													<td style="width: 38px"><b>
													<font face="Tahoma" size="1">
													<input name="StartingPer1" size="5" /></font></b></td>
													<td><font size="1">$ </font>
													<b>
													<font face="Tahoma" size="1">
													<input name="FinalAmount1" size="5" /></font></b></td>
													<td style="width: 38px"><b>
													<font face="Tahoma" size="1">
													<input name="FinalPer1" size="5" /></font></b></td>
												</tr>
											</table>
											</td>
										</tr>
									</table>
									<br class="style28" />
									<table id="table20" border="0" cellpadding="0" cellspacing="0" width="583">
										<tr align="left" valign="top">
											<td height="7" width="258"><b>
											<font size="2">2:</font></b></td>
											<td width="325"><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
											</b></td>
										</tr>
										<tr align="left" valign="top">
											<td height="8"><b><font size="1">From</font></b></td>
											<td><b><font size="1">Employer</font></b></td>
										</tr>
										<tr align="left" valign="top">
											<td>
											<table id="table21" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td><b><font size="1">Month:</font>
													</b></td>
													<td></td>
													<td><b><font size="1">Day:</font>
													</b></td>
													<td></td>
													<td><b><font size="1">Year:</font>
													</b></td>
												</tr>
												<tr>
													<td><font face="Tahoma">
													<input name="FromMonth2" size="2" style="font-weight: 700" /></font><b> 
													/</b></td>
													<td></td>
													<td><font face="Tahoma">
													<input name="FromDay2" size="2" style="font-weight: 700" /></font><b> 
													/</b></td>
													<td></td>
													<td><font face="Tahoma">
													<input name="FromYear2" size="4" style="font-weight: 700" /></font></td>
												</tr>
											</table>
											</td>
											<td><font face="Tahoma">
											<input name="Employer2" size="30" style="font-weight: 700" /></font></td>
										</tr>
										<tr align="left" valign="top">
											<td><b><font size="1">To:</font></b></td>
											<td><b><font size="1">Telephone</font></b></td>
										</tr>
										<tr align="left" valign="top">
											<td>
											<table id="table22" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td><b><font size="1">Month:</font>
													</b></td>
													<td></td>
													<td><b><font size="1">Day:</font>
													</b></td>
													<td></td>
													<td><b><font size="1">Year:</font>
													</b></td>
												</tr>
												<tr>
													<td><font face="Tahoma">
													<input name="ToMonth2" size="2" style="font-weight: 700" /></font><b> 
													/</b></td>
													<td></td>
													<td><font face="Tahoma">
													<input name="ToDay2" size="2" style="font-weight: 700" /></font><b> 
													/</b></td>
													<td></td>
													<td><font face="Tahoma">
													<input name="ToYear2" size="4" style="font-weight: 700" /></font></td>
												</tr>
											</table>
											</td>
											<td>
											<table id="table23" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td><font face="Tahoma">
													<input maxlength="3" name="EmployerArea2" size="3" style="font-weight: 700" /></font></td>
													<td><font face="Tahoma">
													<input maxlength="8" name="EmployerPhone2" size="8" style="font-weight: 700" /></font></td>
													<td><b><font size="1">Ext.</font></b></td>
													<td><font face="Tahoma">
													<input maxlength="5" name="EmployerExt2" size="5" style="font-weight: 700" /></font></td>
												</tr>
											</table>
											</td>
										</tr>
										<tr align="left" valign="top">
											<td><b><font size="1"><br>Starting Job 
											Title/Final Job title</font></b></td>
											<td valign="bottom"><b>
											<font size="1">Address</font></b></td>
										</tr>
										<tr align="left" valign="top">
											<td>
											<table id="table24" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td><font face="Tahoma">
													<input maxlength="30" name="StartingJobTitle2" size="30" style="font-weight: 700" /></font></td>
												</tr>
												<tr>
													<td height="2" nowrap></td>
												</tr>
												<tr>
													<td><font face="Tahoma">
													<input maxlength="30" name="FinalJobTitle2" size="30" style="font-weight: 700" /></font></td>
												</tr>
											</table>
											</td>
											<td>
											<table id="table25" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td><font face="Tahoma">
													<input maxlength="30" name="EmployerAddress2" size="30" style="font-weight: 700" /></font></td>
												</tr>
												<tr>
													<td height="2" nowrap></td>
												</tr>
												<tr>
													<td><font face="Tahoma">
													<input maxlength="30" name="EmployerAddress22" size="30" style="font-weight: 700" /></font></td>
												</tr>
											</table>
											</td>
										</tr>
										<tr align="left" valign="top">
											<td valign="bottom"><b>
											<font size="1">Immediate supervisor 
											and title</font></b></td>
											<td><b><font size="1"><br>Summarize 
											nature of work performed and job responsibilities</font></b></td>
										</tr>
										<tr align="left" valign="top">
											<td><font face="Tahoma">
											<input name="Supervisor2" size="30" style="font-weight: 700" /></font></td>
											<td rowspan="2"><font face="Tahoma">
											<textarea cols="30" name="WorkSummary2" rows="3" style="font-weight: 700"></textarea></font></td>
										</tr>
										<tr align="left" valign="top">
											<td>
											<table id="table26" border="0" cellpadding="0" cellspacing="0" width="211">
												<tr>
													<td colspan="5"><b>
													<font size="1">May we contact 
													for reference?</font> </b>
													</td>
												</tr>
												<tr>
													<td><font face="Tahoma">
													<input checked name="MayWeContact2" style="font-weight: 700" type="radio" value="Yes" /></font><b>
													<font size="1">Yes</font>
													</b></td>
													<td></td>
													<td><font face="Tahoma">
													<input name="MayWeContact2" style="font-weight: 700" type="radio" value="No" /></font><b>
													<font size="1">No</font></b></td>
													<td></td>
													<td><font face="Tahoma">
													<input name="MayWeContact2" style="font-weight: 700" type="radio" value="Later" /></font><b>
													<font size="1">Later</font></b></td>
												</tr>
											</table>
											</td>
										</tr>
										<tr align="left" valign="top">
											<td><b><font size="1"><br>Reason for 
											leaving</font></b></td>
											<td valign="bottom"><b>
											<font size="1">Hourly rate/Salary
											</font></b></td>
										</tr>
										<tr align="left" valign="top">
											<td><font face="Tahoma">
											<input name="ReasonForLeaving2" size="30" style="font-weight: 700" /></font></td>
											<td>
											<table id="table27" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td><b><font size="1">Start</font></b></td>
													<td style="width: 38px"><b>
													<font size="1">Per</font></b></td>
													<td style="width: 47px"><b>
													<font size="1">&nbsp;&nbsp; 
													Final</font></b></td>
													<td style="width: 38px"><b>
													<font size="1">Per</font></b></td>
												</tr>
												<tr>
													<td><font size="1">$ </font>
													<b>
													<font face="Tahoma" size="1">
													<input name="StartingAmount2" size="5" /></font></b></td>
													<td style="width: 38px"><b>
													<font face="Tahoma" size="1">
													<input name="StartingPer2" size="5" /></font></b></td>
													<td><font size="1">$ </font>
													<b>
													<font face="Tahoma" size="1">
													<input name="FinalAmount2" size="5" /></font></b></td>
													<td style="width: 38px"><b>
													<font face="Tahoma" size="1">
													<input name="FinalPer2" size="5" /></font></b></td>
												</tr>
											</table>
											</td>
										</tr>
									</table>
									<br class="style28" />
									<table id="table28" border="0" cellpadding="0" cellspacing="0" width="583">
										<tr align="left" valign="top">
											<td height="7" width="258"><b>
											<font size="2">3:</font></b></td>
											<td width="325"><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
											</b></td>
										</tr>
										<tr align="left" valign="top">
											<td height="8"><b><font size="1">From</font></b></td>
											<td><b><font size="1">Employer</font></b></td>
										</tr>
										<tr align="left" valign="top">
											<td>
											<table id="table29" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td><b><font size="1">Month:</font>
													</b></td>
													<td></td>
													<td><b><font size="1">Day:</font>
													</b></td>
													<td></td>
													<td><b><font size="1">Year:</font>
													</b></td>
												</tr>
												<tr>
													<td><font face="Tahoma">
													<input name="FromMonth3" size="2" style="font-weight: 700" /></font><b> 
													/</b></td>
													<td></td>
													<td><font face="Tahoma">
													<input name="FromDay3" size="2" style="font-weight: 700" /></font><b> 
													/</b></td>
													<td></td>
													<td><font face="Tahoma">
													<input name="FromYear3" size="4" style="font-weight: 700" /></font></td>
												</tr>
											</table>
											</td>
											<td><font face="Tahoma">
											<input name="Employer3" size="30" style="font-weight: 700" /></font></td>
										</tr>
										<tr align="left" valign="top">
											<td><b><font size="1">To:</font></b></td>
											<td><b><font size="1">Telephone</font></b></td>
										</tr>
										<tr align="left" valign="top">
											<td>
											<table id="table30" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td><b><font size="1">Month:</font>
													</b></td>
													<td></td>
													<td><b><font size="1">Day:</font>
													</b></td>
													<td></td>
													<td><b><font size="1">Year:</font>
													</b></td>
												</tr>
												<tr>
													<td><font face="Tahoma">
													<input name="ToMonth3" size="2" style="font-weight: 700" /></font><b> 
													/</b></td>
													<td></td>
													<td><font face="Tahoma">
													<input name="ToDay3" size="2" style="font-weight: 700" /></font><b> 
													/</b></td>
													<td></td>
													<td><font face="Tahoma">
													<input name="ToYear3" size="4" style="font-weight: 700" /></font></td>
												</tr>
											</table>
											</td>
											<td>
											<table id="table31" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td><font face="Tahoma">
													<input maxlength="3" name="EmployerArea3" size="3" style="font-weight: 700" /></font></td>
													<td><font face="Tahoma">
													<input maxlength="8" name="EmployerPhone3" size="8" style="font-weight: 700" /></font></td>
													<td><b><font size="1">Ext.</font></b></td>
													<td><font face="Tahoma">
													<input maxlength="5" name="EmployerExt3" size="5" style="font-weight: 700" /></font></td>
												</tr>
											</table>
											</td>
										</tr>
										<tr align="left" valign="top">
											<td><b><font size="1"><br>Starting Job 
											Title/Final Job title</font></b></td>
											<td valign="bottom"><b>
											<font size="1">Address</font></b></td>
										</tr>
										<tr align="left" valign="top">
											<td>
											<table id="table32" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td><font face="Tahoma">
													<input maxlength="30" name="StartingJobTitle3" size="30" style="font-weight: 700" /></font></td>
												</tr>
												<tr>
													<td height="2" nowrap></td>
												</tr>
												<tr>
													<td><font face="Tahoma">
													<input maxlength="30" name="FinalJobTitle3" size="30" style="font-weight: 700" /></font></td>
												</tr>
											</table>
											</td>
											<td>
											<table id="table33" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td><font face="Tahoma">
													<input maxlength="30" name="EmployerAddress3" size="30" style="font-weight: 700" /></font></td>
												</tr>
												<tr>
													<td height="2" nowrap></td>
												</tr>
												<tr>
													<td><font face="Tahoma">
													<input maxlength="30" name="EmployerAddress23" size="30" style="font-weight: 700" /></font></td>
												</tr>
											</table>
											</td>
										</tr>
										<tr align="left" valign="top">
											<td valign="bottom"><b>
											<font size="1">Immediate supervisor 
											and title</font></b></td>
											<td><b><font size="1"><br>Summarize 
											nature of work performed and job responsibilities</font></b></td>
										</tr>
										<tr align="left" valign="top">
											<td><font face="Tahoma">
											<input name="Supervisor3" size="30" style="font-weight: 700" /></font></td>
											<td rowspan="2"><font face="Tahoma">
											<textarea cols="30" name="WorkSummary3" rows="3" style="font-weight: 700"></textarea></font></td>
										</tr>
										<tr align="left" valign="top">
											<td>
											<table id="table34" border="0" cellpadding="0" cellspacing="0" width="211">
												<tr>
													<td colspan="5"><b>
													<font size="1">May we contact 
													for reference?</font> </b>
													</td>
												</tr>
												<tr>
													<td><font face="Tahoma">
													<input checked name="MayWeContact3" style="font-weight: 700" type="radio" value="Yes" /></font><b>
													<font size="1">Yes</font>
													</b></td>
													<td></td>
													<td><font face="Tahoma">
													<input name="MayWeContact3" style="font-weight: 700" type="radio" value="No" /></font><b>
													<font size="1">No</font></b></td>
													<td></td>
													<td><font face="Tahoma">
													<input name="MayWeContact3" style="font-weight: 700" type="radio" value="Later" /></font><b>
													<font size="1">Later</font></b></td>
												</tr>
											</table>
											</td>
										</tr>
										<tr align="left" valign="top">
											<td><b><font size="1"><br>Reason for 
											leaving</font></b></td>
											<td valign="bottom"><b>
											<font size="1">Hourly rate/Salary
											</font></b></td>
										</tr>
										<tr align="left" valign="top">
											<td><font face="Tahoma">
											<input name="ReasonForLeaving3" size="30" style="font-weight: 700" /></font></td>
											<td>
											<table id="table35" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td width="70"><b>
													<font size="1">&nbsp;&nbsp; 
													Start</font></b></td>
													<td><b><font size="1">Per</font></b></td>
													<td><b><font size="1">&nbsp;&nbsp; 
													Final</font></b></td>
													<td><b><font size="1">Per</font></b></td>
												</tr>
												<tr>
													<td><font size="1">$ </font>
													<b>
													<font face="Tahoma" size="1">
													<input name="StartingAmount3" size="5" /></font></b></td>
													<td><b>
													<font face="Tahoma" size="1">
													<input name="StartingPer3" size="5" /></font></b></td>
													<td><font size="1">$</font><b><font face="Tahoma" size="1"><input name="FinalAmount3" size="5" /></font></b></td>
													<td><b>
													<font face="Tahoma" size="1">
													<input name="FinalPer3" size="5" /></font></b></td>
												</tr>
											</table>
											</td>
										</tr>
									</table>
									<br class="style28" />
									<table id="table36" border="0" cellpadding="0" cellspacing="0" width="583">
										<tr align="left" valign="top">
											<td height="7" width="258"><b>
											<font size="2">4:</font></b></td>
											<td width="325"><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
											</b></td>
										</tr>
										<tr align="left" valign="top">
											<td height="8"><b><font size="1">From</font></b></td>
											<td><b><font size="1">Employer</font></b></td>
										</tr>
										<tr align="left" valign="top">
											<td>
											<table id="table37" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td><b><font size="1">Month:</font>
													</b></td>
													<td></td>
													<td><b><font size="1">Day:</font>
													</b></td>
													<td></td>
													<td><b><font size="1">Year:</font>
													</b></td>
												</tr>
												<tr>
													<td><font face="Tahoma">
													<input name="FromMonth4" size="2" style="font-weight: 700" /></font><b> 
													/</b></td>
													<td></td>
													<td><font face="Tahoma">
													<input name="FromDay4" size="2" style="font-weight: 700" /></font><b> 
													/</b></td>
													<td></td>
													<td><font face="Tahoma">
													<input name="FromYear4" size="4" style="font-weight: 700" /></font></td>
												</tr>
											</table>
											</td>
											<td><font face="Tahoma">
											<input name="Employer4" size="30" style="font-weight: 700" /></font></td>
										</tr>
										<tr align="left" valign="top">
											<td><b><font size="1">To:</font></b></td>
											<td><b><font size="1">Telephone</font></b></td>
										</tr>
										<tr align="left" valign="top">
											<td>
											<table id="table38" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td><b><font size="1">Month:</font>
													</b></td>
													<td></td>
													<td><b><font size="1">Day:</font>
													</b></td>
													<td></td>
													<td><b><font size="1">Year:</font>
													</b></td>
												</tr>
												<tr>
													<td><font face="Tahoma">
													<input name="ToMonth4" size="2" style="font-weight: 700" /></font><b> 
													/</b></td>
													<td></td>
													<td><font face="Tahoma">
													<input name="ToDay4" size="2" style="font-weight: 700" /></font><b> 
													/</b></td>
													<td></td>
													<td><font face="Tahoma">
													<input name="ToYear4" size="4" style="font-weight: 700" /></font></td>
												</tr>
											</table>
											</td>
											<td>
											<table id="table39" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td><font face="Tahoma">
													<input maxlength="3" name="EmployerArea4" size="3" style="font-weight: 700" /></font></td>
													<td><font face="Tahoma">
													<input maxlength="8" name="EmployerPhone4" size="8" style="font-weight: 700" /></font></td>
													<td><b><font size="1">Ext.</font></b></td>
													<td><font face="Tahoma">
													<input maxlength="5" name="EmployerExt4" size="5" style="font-weight: 700" /></font></td>
												</tr>
											</table>
											</td>
										</tr>
										<tr align="left" valign="top">
											<td><b><font size="1"><br>Starting Job 
											Title/Final Job title</font></b></td>
											<td valign="bottom"><b>
											<font size="1">Address</font></b></td>
										</tr>
										<tr align="left" valign="top">
											<td>
											<table id="table40" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td><font face="Tahoma">
													<input maxlength="30" name="StartingJobTitle4" size="30" style="font-weight: 700" /></font></td>
												</tr>
												<tr>
													<td height="2" nowrap></td>
												</tr>
												<tr>
													<td><font face="Tahoma">
													<input maxlength="30" name="FinalJobTitle4" size="30" style="font-weight: 700" /></font></td>
												</tr>
											</table>
											</td>
											<td>
											<table id="table41" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td><font face="Tahoma">
													<input maxlength="30" name="EmployerAddress4" size="30" style="font-weight: 700" /></font></td>
												</tr>
												<tr>
													<td height="2" nowrap></td>
												</tr>
												<tr>
													<td><font face="Tahoma">
													<input maxlength="30" name="EmployerAddress24" size="30" style="font-weight: 700" /></font></td>
												</tr>
											</table>
											</td>
										</tr>
										<tr align="left" valign="top">
											<td><b><font size="1"><br>Immediate 
											supervisor and title</font></b></td>
											<td valign="bottom"><b>
											<font size="1">Summarize nature of work 
											performed and job responsibilities</font></b></td>
										</tr>
										<tr align="left" valign="top">
											<td><font face="Tahoma">
											<input name="Supervisor4" size="30" style="font-weight: 700" /></font></td>
											<td rowspan="2"><font face="Tahoma">
											<textarea cols="30" name="WorkSummary4" rows="3" style="font-weight: 700"></textarea></font></td>
										</tr>
										<tr align="left" valign="top">
											<td>
											<table id="table42" border="0" cellpadding="0" cellspacing="0" width="211">
												<tr>
													<td colspan="5"><b>
													<font size="1">May we contact 
													for reference?</font> </b>
													</td>
												</tr>
												<tr>
													<td><font face="Tahoma">
													<input checked name="MayWeContact4" style="font-weight: 700" type="radio" value="Yes" /></font><b>
													<font size="1">Yes</font>
													</b></td>
													<td></td>
													<td><font face="Tahoma">
													<input name="MayWeContact4" style="font-weight: 700" type="radio" value="No" /></font><b>
													<font size="1">No</font></b></td>
													<td></td>
													<td><font face="Tahoma">
													<input name="MayWeContact4" style="font-weight: 700" type="radio" value="Later" /></font><b>
													<font size="1">Later</font></b></td>
												</tr>
											</table>
											</td>
										</tr>
										<tr align="left" valign="top">
											<td style="height: 12px"><b>
											<font size="1"><br>Reason for leaving</font></b></td>
											<td style="height: 12" valign="bottom">
											<b><font size="1">Hourly rate/Salary
											</font></b></td>
										</tr>
										<tr align="left" valign="top">
											<td><font face="Tahoma">
											<input name="ReasonForLeaving4" size="30" style="font-weight: 700" /></font></td>
											<td>
											<table id="table43" border="0" cellpadding="0" cellspacing="0">
												<tr>
													<td style="width: 47px"><b>
													<font size="1">&nbsp;&nbsp; 
													Start</font></b></td>
													<td style="width: 38px"><b>
													<font size="1">Per</font></b></td>
													<td style="width: 47px"><b>
													<font size="1">&nbsp;&nbsp; 
													Final</font></b></td>
													<td style="width: 38px"><b>
													<font size="1">Per</font></b></td>
												</tr>
												<tr>
													<td><font size="1">$ </font>
													<b>
													<font face="Tahoma" size="1">
													<input name="StartingAmount4" size="5" /></font></b></td>
													<td><b>
													<font face="Tahoma" size="1">
													<input name="StartingPer4" size="5" /></font></b></td>
													<td><font size="1">$ </font>
													<b>
													<font face="Tahoma" size="1">
													<input name="FinalAmount4" size="5" /></font></b></td>
													<td><b>
													<font face="Tahoma" size="1">
													<input name="FinalPer4" size="5" /></font></b></td>
												</tr>
											</table>
											</td>
										</tr>
										<tr class="style1" valign="middle">
											<td class="style29" style="height: 20px" valign="bottom">&nbsp;</td>
										</tr>
									</table>
									</td>
								</tr>
							</table>
							</font></td>
						</tr>
					</table>
					</td>
				</tr>
				<tr>
					<td class="style44" valign="top">
					<table border="0" cellpadding="0" cellspacing="0" width="100%">
						<tr>
							<td bgcolor="">
							<table align="center" border="0" cellpadding="0" cellspacing="0" width="645">
								<tr>
									<td width="45"><b>&nbsp;</b></td>
									<td width="287"><font size="2"><b>Skills and 
									Qualifications</b></font></td>
									<td width="288"><font size="2"><b>Educational 
									Background </b></font></td>
								</tr>
								<tr>
									<td height="5" width="45"></td>
									<td colspan="2" width="545">&nbsp;</td>
								</tr>
							</table>
							<table align="center" border="0" cellpadding="0" cellspacing="0" width="645">
								<tr>
									<td rowspan="4" width="46"><b>&nbsp;</b></td>
									<td height="100" nowrap valign="TOP" width="303">
									<table border="0" cellpadding="0" cellspacing="0" style="width: 274px; height: 194px">
										<tr>
											<td height="15" width="262"><b>
											<font size="1">Summarize any training, 
											skills, licenses and/or certificates 
											that may qualify you as being able to 
											perform job related functions in the 
											position for which you are applying.</font></b></td>
										</tr>
										<tr>
											<td><font face="Tahoma">
											<textarea name="SkillSummary" style="font-weight: 700; width: 270px; height: 145px;"></textarea></font></td>
										</tr>
									</table>
									</td>
									<td nowrap rowspan="4" valign="TOP" width="296">
									<table border="0" cellpadding="0" cellspacing="0" width="262">
										<tr>
											<td width="262"><b><font size="1">High 
											School</font></b></td>
										</tr>
										<tr>
											<td><font face="Tahoma">
											<input name="HighSchool" size="30" style="font-weight: 700"></font></td>
										</tr>
										<tr>
											<td><b><font size="1">Number of years 
											completed</font></b></td>
										</tr>
										<tr>
											<td><font face="Tahoma">
											<input name="HSYears" size="30" style="font-weight: 700"></font></td>
										</tr>
										<tr>
											<td><b><font size="1">Did you graduate?</font></b></td>
										</tr>
										<tr>
											<td>
											<table border="0" cellpadding="0" cellspacing="0" width="262">
												<tr>
													<td width="63">
													<font face="Tahoma">
													<input checked="true" name="HSGraduate" style="font-weight: 700" type="radio" value="Yes"></font><b>
													<font size="1">yes</font>
													</b></td>
													<td width="5">&nbsp;</td>
													<td width="194">
													<font face="Tahoma">
													<input name="HSGraduate" style="font-weight: 700" type="radio" value="No"></font><b>
													<font size="1">No</font></b></td>
												</tr>
											</table>
											</td>
										</tr>
										<tr>
											<td><b><font size="1">Course of study</font></b></td>
										</tr>
										<tr>
											<td><font face="Tahoma">
											<input name="HSStudy" size="30" style="font-weight: 700"></font></td>
										</tr>
									</table>
									<b><br></b>
									<table border="0" cellpadding="0" cellspacing="0" width="262">
										<tr>
											<td width="262"><b><font size="1">College</font></b></td>
										</tr>
										<tr>
											<td><font face="Tahoma">
											<input name="College" size="30" style="font-weight: 700"></font></td>
										</tr>
										<tr>
											<td><b><font size="1">Number of years 
											completed</font></b></td>
										</tr>
										<tr>
											<td><font face="Tahoma">
											<input name="ColYears" size="30" style="font-weight: 700"></font></td>
										</tr>
										<tr>
											<td><b><font size="1">Did you graduate?</font></b></td>
										</tr>
										<tr>
											<td>
											<table border="0" cellpadding="0" cellspacing="0" width="262">
												<tr>
													<td width="63">
													<font face="Tahoma">
													<input checked="true" name="ColGraduate" style="font-weight: 700" type="radio" value="Yes"></font><b>
													<font size="1">yes</font>
													</b></td>
													<td width="5">&nbsp;</td>
													<td width="194">
													<font face="Tahoma">
													<input name="ColGraduate" style="font-weight: 700" type="radio" value="No"></font><b>
													<font size="1">No</font></b></td>
												</tr>
											</table>
											</td>
										</tr>
										<tr>
											<td>
											<table border="0" cellpadding="0" cellspacing="0" width="262">
												<tr>
													<td width="63"><b>
													<font size="1">Major </font>
													</b></td>
													<td width="5">&nbsp;</td>
													<td width="194"><b>
													<font size="1">Degree</font></b></td>
												</tr>
												<tr>
													<td><font face="Tahoma">
													<input name="ColMajor" size="13" style="font-weight: 700"></font></td>
													<td>&nbsp;</td>
													<td><font face="Tahoma">
													<input name="ColDegree" size="13" style="font-weight: 700"></font></td>
												</tr>
											</table>
											</td>
										</tr>
										<tr>
											<td><b><font size="1">Course of study</font></b></td>
										</tr>
										<tr>
											<td><font face="Tahoma">
											<input name="ColStudy" size="30" style="font-weight: 700"></font></td>
										</tr>
									</table>
									<b><br></b>
									<table border="0" cellpadding="0" cellspacing="0" width="262">
										<tr>
											<td width="262"><b><font size="1">Other</font></b></td>
										</tr>
										<tr>
											<td><font face="Tahoma">
											<input name="OthSchool" size="30" style="font-weight: 700"></font></td>
										</tr>
										<tr>
											<td><b><font size="1">Number of years 
											completed</font></b></td>
										</tr>
										<tr>
											<td><font face="Tahoma">
											<input name="OthYears" size="30" style="font-weight: 700"></font></td>
										</tr>
										<tr>
											<td><b><font size="1">Did you graduate?</font></b></td>
										</tr>
										<tr>
											<td>
											<table border="0" cellpadding="0" cellspacing="0" width="262">
												<tr>
													<td width="63">
													<font face="Tahoma">
													<input checked="true" name="OthGraduate" style="font-weight: 700" type="radio" value="Yes"></font><b>
													<font size="1">yes</font>
													</b></td>
													<td width="5">&nbsp;</td>
													<td width="194">
													<font face="Tahoma">
													<input name="OthGraduate" style="font-weight: 700" type="radio" value="No"></font><b>
													<font size="1">No</font></b></td>
												</tr>
											</table>
											</td>
										</tr>
										<tr>
											<td><b><font size="1">Course of study</font></b></td>
										</tr>
										<tr>
											<td><font face="Tahoma">
											<input name="OthStudy" size="30" style="font-weight: 700"></font></td>
										</tr>
										<tr>
											<td>
											<p><b><br></b><span class="style55">
											<strong>How did you hear about MassageLuxe?</strong></span></p>
											<p><font face="Tahoma">
											<textarea cols="30" name="HowHear" rows="3" style="font-weight: 700"></textarea></font></p>
											</td>
										</tr>
									</table>
									</td>
								</tr>
								<tr>
									<td nowrap valign="TOP"><font size="2"><b>
									<br>References</b></font></td>
								</tr>
								<tr>
									<td height="5" nowrap valign="TOP"><b></b>
									</td>
								</tr>
								<tr>
									<td nowrap valign="TOP"><b><font size="2">1:</font></b><table border="0" cellpadding="0" cellspacing="0">
										<tr>
											<td height="15"><b><font size="1">First 
											Name </font></b></td>
											<td nowrap rowspan="2" width="5">
											</td>
											<td><b><font size="1">Last Name
											</font></b></td>
											<td nowrap rowspan="2" width="5">
											</td>
										</tr>
										<tr>
											<td><font face="Tahoma">
											<input maxlength="14" name="ReferenceFirstName1" size="14" style="font-weight: 700"></font></td>
											<td><font face="Tahoma">
											<input maxlength="20" name="ReferenceLastName1" size="20" style="font-weight: 700"></font></td>
										</tr>
									</table>
									<table border="0" cellpadding="0" cellspacing="0">
										<tr>
											<td colspan="4" height="15"><b>
											<font size="1">Daytime Phone </font>
											</b></td>
										</tr>
										<tr>
											<td><font face="Tahoma">
											<input maxlength="3" name="ReferenceDayArea1" size="3" style="font-weight: 700"></font></td>
											<td><font face="Tahoma">
											<input maxlength="8" name="ReferenceDayPhone1" size="8" style="font-weight: 700"></font></td>
											<td><b><font size="1">Ext.</font></b></td>
											<td><font face="Tahoma">
											<input maxlength="5" name="ReferenceDayExt1" size="5" style="font-weight: 700"></font></td>
										</tr>
									</table>
									<table border="0" cellpadding="0" cellspacing="0" width="172">
										<tr>
											<td height="15"><b><font size="1">Years 
											known</font> </b></td>
										</tr>
										<tr>
											<td height="15">
											<font face="Tahoma" size="1">
											<input maxlength="8" name="ReferenceYearsKnown1" size="8" style="font-weight: 700"></font><font size="1"><b>
											</b></font></td>
										</tr>
									</table>
									<b><br><font size="2">2:</font></b><table border="0" cellpadding="0" cellspacing="0">
										<tr>
											<td height="15"><b><font size="1">First 
											Name </font></b></td>
											<td nowrap rowspan="2" width="5">
											</td>
											<td><b><font size="1">Last Name
											</font></b></td>
											<td nowrap rowspan="2" width="5">
											</td>
										</tr>
										<tr>
											<td><font face="Tahoma">
											<input maxlength="14" name="ReferenceFirstName2" size="14" style="font-weight: 700"></font></td>
											<td><font face="Tahoma">
											<input maxlength="20" name="ReferenceLastName2" size="20" style="font-weight: 700"></font></td>
										</tr>
									</table>
									<table border="0" cellpadding="0" cellspacing="0">
										<tr>
											<td colspan="4" height="15"><b>
											<font size="1">Daytime Phone </font>
											</b></td>
										</tr>
										<tr>
											<td><font face="Tahoma">
											<input maxlength="3" name="ReferenceDayArea2" size="3" style="font-weight: 700"></font></td>
											<td><font face="Tahoma">
											<input maxlength="8" name="ReferenceDayPhone2" size="8" style="font-weight: 700"></font></td>
											<td><b><font size="1">Ext.</font></b></td>
											<td><font face="Tahoma">
											<input maxlength="5" name="ReferenceDayExt2" size="5" style="font-weight: 700"></font></td>
										</tr>
									</table>
									<table border="0" cellpadding="0" cellspacing="0" width="172">
										<tr>
											<td height="15"><b><font size="1">Years 
											known</font> </b></td>
										</tr>
										<tr>
											<td height="15">
											<font face="Tahoma" size="1">
											<input maxlength="8" name="ReferenceYearsKnown2" size="8" style="font-weight: 700"></font><font size="1"><b>
											</b></font></td>
										</tr>
									</table>
									<b><br><font size="2">3:</font></b><table border="0" cellpadding="0" cellspacing="0">
										<tr>
											<td height="15"><b><font size="1">First 
											Name </font></b></td>
											<td nowrap rowspan="2" width="5">
											</td>
											<td><b><font size="1">Last Name
											</font></b></td>
											<td nowrap rowspan="2" width="5">
											</td>
										</tr>
										<tr>
											<td><font face="Tahoma">
											<input maxlength="14" name="ReferenceFirstName3" size="14" style="font-weight: 700"></font></td>
											<td><font face="Tahoma">
											<input maxlength="20" name="ReferenceLastName3" size="20" style="font-weight: 700"></font></td>
										</tr>
									</table>
									<table border="0" cellpadding="0" cellspacing="0">
										<tr>
											<td colspan="4" height="15"><b>
											<font size="1">Daytime Phone </font>
											</b></td>
										</tr>
										<tr>
											<td><font face="Tahoma">
											<input maxlength="3" name="ReferenceDayArea3" size="3" style="font-weight: 700"></font></td>
											<td><font face="Tahoma">
											<input maxlength="8" name="ReferenceDayPhone3" size="8" style="font-weight: 700"></font></td>
											<td><b><font size="1">Ext.</font></b></td>
											<td><font face="Tahoma">
											<input maxlength="5" name="ReferenceDayExt3" size="5" style="font-weight: 700"></font></td>
										</tr>
									</table>
									<table border="0" cellpadding="0" cellspacing="0" width="172">
										<tr>
											<td height="15"><b><font size="1">Years 
											known</font> </b></td>
										</tr>
										<tr>
											<td height="15">
											<font face="Tahoma" size="1">
											<input maxlength="8" name="ReferenceYearsKnown3" size="8" style="font-weight: 700"></font><font size="1"><b>
											</b></font></td>
										</tr>
									</table>
									</td>
								</tr>
							</table>
							<table align="center" border="0" cellpadding="0" cellspacing="0" width="645">
								<tr>
									<td width="45"><b>&nbsp;</b></td>
									<td width="287"><font size="2"><b><br>Applicant 
									Statement</b></font></td>
									<td width="288"><b><font size="2">&nbsp;</font>
									</b></td>
								</tr>
								<tr>
									<td height="5" width="45"></td>
									<td colspan="2" width="545"><b></b></td>
								</tr>
								<tr>
									<td height="5"></td>
									<td class="style60" colspan="2">
									<font size="1" style="text-align: left">I certify 
									that all information I have provided in order 
									to apply for and secure work with the employer 
									is true, complete and correct.<br>I understand 
									that any information provided by me that is 
									found to be false, incomplete or misrepresented 
									in any respect, will be sufficient cause to 
									(1) cancel further consideration of this application, 
									or (2) immediately discharge me from the employers 
									service whenever it is discovered.<br>I expressly 
									authorize, without reservation, the employer, 
									its representatives, employees or agents to 
									contact and obtain information from all references 
									(personal and professional), employers, public 
									agencies, licensing authorities and educational 
									institutions and to otherwise verify the accuracy 
									of all information provided by me in this application, 
									resume or job interview. I hereby waive any 
									and all rights and claims I may have regarding 
									the employer, its agents, employees or representatives, 
									for seeking, gathering and using such information 
									in the employment process and all other persons, 
									corporations or organizations for furnishing 
									such information about me.<br>I understand that 
									the employer does not unlawfully discriminate 
									in employment and no question on this application 
									is used for the purpose of limiting or excusing 
									any applicant from consideration for employment 
									on a basis prohibited by applicable local, state 
									or federal law.<br>I understand that this application 
									remains current for only 30 days. At the conclusion 
									of that time, if I have not heard from the employer 
									and still wish to be considered for employment, 
									it will be necessary to reapply and fill out 
									a new application.<br>If I am hired, I understand 
									that I am free to resign at any time, with or 
									without cause and without prior notice, and 
									the employer reserves the same right to terminate 
									my employment at any time, with or without cause 
									and without prior notice, except as may be required 
									by law. This application does not constitute 
									an agreement or contract for employment for 
									any specified period or definite duration. I 
									understand that no supervisor or representative 
									of the employer is authorized to make any assurances 
									to the contrary and that no implied, oral or 
									written agreements contrary to the foregoing 
									express language are valid unless they are in 
									written and signed by the employers president.<br>
									I also understand that if I am hired, I will 
									be required to provide proof of identity and 
									legal authority to work in the United States 
									and that federal immigration laws require me 
									to complete an I-9 Form in this regard.</font></td>
								</tr>
							</table>
							<table align="center" border="0" cellpadding="0" cellspacing="0" width="645">
								<tr>
									<td width="45"><b>&nbsp;</b></td>
									<td><font size="2"><b><br>DO NOT SUBMIT THIS 
									FORM UNTIL YOU HAVE READ THE ABOVE APPLICANT 
									STATEMENT.</b></font></td>
								</tr>
								<tr>
									<td height="5" width="45"></td>
									<td width="545"><b></b></td>
								</tr>
								<tr>
									<td height="5"></td>
									<td><font face="Tahoma" size="1">
									<input name="Agree" style="font-weight: 700" type="checkbox"></font><font size="1"><b> 
									I certify that I have read, fully understand 
									and accept all terms of the foregoing Applicant 
									Statement.<span lang="en-us"><strong><span class="style59">*</span></strong></span></b></font></td>
								</tr>
								<tr>
									<td height="5"><br></td>
									<td>
									<table border="0" cellpadding="0" cellspacing="0" width="580">
										<tr>
											<td height="15"><b><font size="1">Name
											</font></b></td>
											<td nowrap rowspan="2" width="5">
											</td>
											<td><b><font size="1">&nbsp; </font>
											</b></td>
											<td nowrap rowspan="2" width="5">
											</td>
										</tr>
										<tr>
											<td><font face="Tahoma">
											<input maxlength="40" name="Name" size="40" style="font-weight: 700"></font><span lang="en-us"><strong><span class="style59">*</span></strong></span><b><font size="2"><br>
											</font></b></td>
											<td valign="top">
											<font face="Tahoma">
											<input id="Cancel" name="Cancel" onclick="window.location='application1.asp?Navbutton=0601&amp;Main=06'" style="font-weight: 700" type="button" value="Cancel"></font><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
											</b><font face="Tahoma">
											<input id="Submit" name="Submit" style="font-weight: 700" type="submit" value="I Agree, Submit"></font></td>
										</tr>
									</table>
									</td>
								</tr>
							</table>
							</td>
						</tr>
					</table>
					</td>
				</tr>
				<tr>
					<td class="style44" style="height: 75px"><span lang="en-us">
					<a href="contactus.asp"><span class="style26">CONTACT US</span></a><span class="style46">&nbsp;
					</span><span class="style48">|</span><span class="style41">
					</span><span class="style26">&nbsp;<a href="default.htm">HOME</a>&nbsp;
					<span class="style48">|&nbsp; </span></span></span>
					<a href="services.htm"><span class="style26">SERVICES</span></a><span class="style26">&nbsp;
					</span><span class="style48">|</span><span class="style41">
					</span><span class="style26">&nbsp;</span><a href="memberships.htm"><span class="style26">MEMBERSHIPS</span></a><span class="style26">&nbsp;
					</span><span class="style48">|</span><span class="style41">
					</span><span class="style26">&nbsp;<a href="AboutUs.htm">ABOUT 
					US</a></span><br><span class="style26">
					<a href="LocationsMO.htm">LOCATIONS</a>&nbsp;
					<span class="style48">|</span></span><span class="style22">
					</span><span class="style26">&nbsp;</span><a href="careers.htm"><span class="style26">CAREERS</span></a><span class="style26">
					</span><span class="style41">&nbsp;</span><span class="style48">|</span><span class="style26">&nbsp;
					</span>
					<a href="https://pconsite4.pconsite.com/CMS_MassageLuxe/POS/giftcards/onlinegiftcardcustomersearch.aspx" target="_blank">
					<span class="style26">GIFT CARDS</span></a><span class="style26">&nbsp;
					</span><span class="style48">|</span><span class="style26">&nbsp;
					</span><a href="Franchise.htm"><span class="style26">FRANCHISE</span></a></td>
				</tr>
			</table>
			</td>
		</tr>
	</table>
</form>
<script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script>
<script type="text/javascript"> var pageTracker = _gat._getTracker("UA-6604746-3"); pageTracker._initData(); pageTracker._trackPageview(); </script>

</body>

</html>
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
356:
357:
358:
359:
360:
361:
362:
363:
364:
365:
366:
367:
368:
369:
370:
371:
372:
373:
374:
375:
376:
377:
378:
379:
<%

	LocationsApplied = Request.Form("LocationsApplied")
	Positions = Request.Form("Positions")
	EmailAddress = Request.Form("EmailAddress")

	if Request.Form("Agree")="on" then
		Agree="X"
	else
		Agree=" "
	end if

	msg = "APPLICATION FOR EMPLOYMENT" & vbCrLf & vbCrLf
	msg = msg & "Equal access to programs, services and employment is available to all persons. Those applicants requiring reasonable accommodation to the application and / or interview process should notify a representative of the Human Resources Department." & vbCrLf & vbCrLf
	msg = msg & "Location(s) applied for: " & vbCrLf
	msg = msg & Request.Form("LocationsApplied") & Request.Form("StorePhone") & vbCrLf & vbCrLf
	msg = msg & "Position(s) applied for: " & vbCrLf
	msg = msg & Request.Form("Positions") & vbCrLf & vbCrLf
	msg = msg & "        First Name: " & Request.Form("FirstName") & vbCrLf
	msg = msg & "         Last Name: " & Request.Form("LastName") & vbCrLf
	msg = msg & "           Address: " & Request.Form("Address") & vbCrLf
	msg = msg & "                  : " & Request.Form("Address2") & vbCrLf
	msg = msg & "         Town/City: " & Request.Form("City") & vbCrLf
	msg = msg & "             State: " & Request.Form("State") & vbCrLf
	msg = msg & "          Zip Code: " & Request.Form("Zip") & vbCrLf
	msg = msg & "           Country: US " & vbCrLf
	msg = msg & "     Daytime Phone: (" & Request.Form("DayArea") & ") " & Request.Form("DayPhone") & " ext. " & Request.Form("DayExt") &  vbCrLf
	msg = msg & "     Evening Phone: (" & Request.Form("NightArea") & ") " & Request.Form("NightPhone") & vbCrLf
	msg = msg & "Mobile/Other Phone: (" & Request.Form("MobileArea") & ") " & Request.Form("MobilePhone") & vbCrLf
	msg = msg & "     Email Address: " & Request.Form("EmailAddress") & vbCrLf & vbCrLf
	msg = msg & "APPLICATION INFORMATION" & vbCrLf & vbCrLf
	msg = msg & "If you are under 18, and it is required, can you furnish a work permit? " & Request.Form("WorkPermit") & vbCrLf
	msg = msg & "If no, please explain: " & vbCrLf
	msg = msg & Request.Form("WorkPermitWhy") & vbCrLf & vbCrLf
	msg = msg & "Have you ever been employed here before? " & Request.Form("PreviouslyEmployed") & vbCrLf
	msg = msg & "If yes, give dates and positions: " & vbCrLf
	msg = msg & Request.Form("PreviouslyEmployedWhen") & vbCrLf & vbCrLf
	msg = msg & "Are you legally eligible for employment in this country? " & Request.Form("LegallyEligible") & vbCrLf & vbCrLf
	msg = msg & " Date Available For Work: " & Request.Form("Availablemonth") & " " & Request.Form("Availableday") & ", " & Request.Form("Availableyear") & vbCrLf
	msg = msg & "    Desired Salary Range: " & Request.Form("DesiredSalary") & vbCrLf
	msg = msg & "      Employment Desired: " & vbCrLf
	if Request.Form("Full-Time")="on" then msg = msg & "                        : Full-Time" & vbCrLf
	if Request.Form("Part-Time")="on" then msg = msg & "                        : Part-Time" & vbCrLf
	if Request.Form("Temporary")="on" then msg = msg & "                        : Temporary" & vbCrLf
	if Request.Form("Seasonal")="on" then msg = msg & "                        : Seasonal" & vbCrLf
	if Request.Form("Educational")="on" then msg = msg & "                        : Educational Co-Op" & vbCrLf
	msg = msg & "Are you able to meet the requirements of the position? " & Request.Form("MeetRequirements") & vbCrLf & vbCrLf
	msg = msg & "License Number: " & Request.Form("LicenseNumber") & vbCrLf & vbCrLf
	msg = msg & "Have you ever pled ''guilty'' or ''no contest'' to, or been convicted of a crime? " & Request.Form("Convicted") & vbCrLf
	msg = msg & "If yes please provide date(s) and details: " & vbCrLf
	msg = msg & "ANSWERING ''YES'' TO THESE QUESTIONS DOES NOT CONSTITUTE AN AUTOMATIC BAR TO EMPLOYMENT. FACTORS SUCH AS DATE OF THE OFFENSE, SERIOUSNESS AND NATURE OF THE VIOLATION, REHABILITATION AND AND POSITION APPLIED FOR WILL BE TAKEN INTO CONSIDERATION" & vbCrLf
	msg = msg & Request.Form("ConvictedWhen") & vbCrLf & vbCrLf
	msg = msg & "Drivers license number if driving is an essential job function: " & Request.Form("DriversLicenseNumber") & vbCrLf & vbCrLf
	msg = msg & "EMPLOYMENT HISTORY" & vbCrLf & vbCrLf
	msg = msg & "Provide the following information of your past four (4) employers, assignments or volunteer activities, starting with the most recent." & vbCrLf & vbCrLf
	msg = msg & "(1)                   Employer: " & Request.Form("Employer1") & vbCrLf
	msg = msg & "                          From: " & Request.Form("Frommonth1") & "/" & Request.Form("Fromday1") & "/" & Request.Form("Fromyear1") & vbCrLf
	msg = msg & "                            To: " & Request.Form("Tomonth1") & "/" & Request.Form("Today1") & "/" & Request.Form("Toyear1") & vbCrLf
	msg = msg & "            Starting Job Title: " & Request.Form("StartingJobTitle1") & vbCrLf
	msg = msg & "               Final Job Title: " & Request.Form("FinalJobTitle1") & vbCrLf
	msg = msg & "Immediate supervisor and title: " & Request.Form("Supervisor1") & vbCrLf
	msg = msg & "  May we contact for reference? " & Request.Form("MayWeContact1") & vbCrLf
	msg = msg & "            Reason for Leaving: " & Request.Form("ReasonForLeaving1") & vbCrLf
	msg = msg & "                     Telephone: (" & Request.Form("EmployerArea1") & ") " & Request.Form("EmployerPhone1") & " ext. " & Request.Form("EmployerExt1") & vbCrLf
	msg = msg & "                       Address: " & Request.Form("EmployerAddress1") & vbCrLf
	msg = msg & "                              : " & Request.Form("EmployerAddress21") & vbCrLf
	msg = msg & "Sumarize nature of work performed and job responsibilities: " & vbCrLf
	msg = msg & Request.Form("WorkSummary1") & vbCrLf
	msg = msg & "   Starting Hourly Rate/Salary: $" & Request.Form("StartingAmount1") & " Per " & Request.Form("StartingPer1") & vbCrLf
	msg = msg & "      Final Hourly Rate/Salary: $" & Request.Form("FinalAmount1") & " Per " & Request.Form("FinalPer1") & vbCrLf & vbCrLf
	msg = msg & "(2)                   Employer: " & Request.Form("Employer2") & vbCrLf
	msg = msg & "                          From: " & Request.Form("Frommonth2") & "/" & Request.Form("Fromday2") & "/" & Request.Form("Fromyear2") & vbCrLf
	msg = msg & "                            To: " & Request.Form("Tomonth2") & "/" & Request.Form("Today2") & "/" & Request.Form("Toyear2") & vbCrLf
	msg = msg & "            Starting Job Title: " & Request.Form("StartingJobTitle2") & vbCrLf
	msg = msg & "               Final Job Title: " & Request.Form("FinalJobTitle2") & vbCrLf
	msg = msg & "Immediate supervisor and title: " & Request.Form("Supervisor2") & vbCrLf
	msg = msg & "  May we contact for reference? " & Request.Form("MayWeContact2") & vbCrLf
	msg = msg & "            Reason for Leaving: " & Request.Form("ReasonForLeaving2") & vbCrLf
	msg = msg & "                     Telephone: (" & Request.Form("EmployerArea2") & ") " & Request.Form("EmployerPhone2") & " ext. " & Request.Form("EmployerExt2") & vbCrLf
	msg = msg & "                       Address: " & Request.Form("EmployerAddress2") & vbCrLf
	msg = msg & "                              : " & Request.Form("EmployerAddress22") & vbCrLf
	msg = msg & "Sumarize nature of work performed and job responsibilities: " & vbCrLf
	msg = msg & Request.Form("WorkSummary2") & vbCrLf
	msg = msg & "   Starting Hourly Rate/Salary: $" & Request.Form("StartingAmount2") & " Per " & Request.Form("StartingPer2") & vbCrLf
	msg = msg & "      Final Hourly Rate/Salary: $" & Request.Form("FinalAmount2") & " Per " & Request.Form("FinalPer2") & vbCrLf & vbCrLf
	msg = msg & "(3)                   Employer: " & Request.Form("Employer3") & vbCrLf
	msg = msg & "                          From: " & Request.Form("Frommonth3") & "/" & Request.Form("Fromday3") & "/" & Request.Form("Fromyear3") & vbCrLf
	msg = msg & "                            To: " & Request.Form("Tomonth3") & "/" & Request.Form("Today3") & "/" & Request.Form("Toyear3") & vbCrLf
	msg = msg & "            Starting Job Title: " & Request.Form("StartingJobTitle3") & vbCrLf
	msg = msg & "               Final Job Title: " & Request.Form("FinalJobTitle3") & vbCrLf
	msg = msg & "Immediate supervisor and title: " & Request.Form("Supervisor3") & vbCrLf
	msg = msg & "  May we contact for reference? " & Request.Form("MayWeContact3") & vbCrLf
	msg = msg & "            Reason for Leaving: " & Request.Form("ReasonForLeaving3") & vbCrLf
	msg = msg & "                     Telephone: (" & Request.Form("EmployerArea3") & ") " & Request.Form("EmployerPhone3") & " ext. " & Request.Form("EmployerExt3") & vbCrLf
	msg = msg & "                       Address: " & Request.Form("EmployerAddress3") & vbCrLf
	msg = msg & "                              : " & Request.Form("EmployerAddress23") & vbCrLf
	msg = msg & "Sumarize nature of work performed and job responsibilities: " & vbCrLf
	msg = msg & Request.Form("WorkSummary3") & vbCrLf
	msg = msg & "   Starting Hourly Rate/Salary: $" & Request.Form("StartingAmount3") & " Per " & Request.Form("StartingPer3") & vbCrLf
	msg = msg & "      Final Hourly Rate/Salary: $" & Request.Form("FinalAmount3") & " Per " & Request.Form("FinalPer3") & vbCrLf & vbCrLf
	msg = msg & "(4)                   Employer: " & Request.Form("Employer4") & vbCrLf
	msg = msg & "                          From: " & Request.Form("Frommonth4") & "/" & Request.Form("Fromday4") & "/" & Request.Form("Fromyear4") & vbCrLf
	msg = msg & "                            To: " & Request.Form("Tomonth4") & "/" & Request.Form("Today4") & "/" & Request.Form("Toyear4") & vbCrLf
	msg = msg & "            Starting Job Title: " & Request.Form("StartingJobTitle4") & vbCrLf
	msg = msg & "               Final Job Title: " & Request.Form("FinalJobTitle4") & vbCrLf
	msg = msg & "Immediate supervisor and title: " & Request.Form("Supervisor4") & vbCrLf
	msg = msg & "  May we contact for reference? " & Request.Form("MayWeContact4") & vbCrLf
	msg = msg & "            Reason for Leaving: " & Request.Form("ReasonForLeaving4") & vbCrLf
	msg = msg & "                     Telephone: (" & Request.Form("EmployerArea4") & ") " & Request.Form("EmployerPhone4") & " ext. " & Request.Form("EmployerExt4") & vbCrLf
	msg = msg & "                       Address: " & Request.Form("EmployerAddress4") & vbCrLf
	msg = msg & "                              : " & Request.Form("EmployerAddress24") & vbCrLf
	msg = msg & "Sumarize nature of work performed and job responsibilities: " & vbCrLf
	msg = msg & Request.Form("WorkSummary4") & vbCrLf
	msg = msg & "   Starting Hourly Rate/Salary: $" & Request.Form("StartingAmount4") & " Per " & Request.Form("StartingPer4") & vbCrLf
	msg = msg & "      Final Hourly Rate/Salary: $" & Request.Form("FinalAmount4") & " Per " & Request.Form("FinalPer4") & vbCrLf & vbCrLf
	msg = msg & "SKILLS AND QUALIFICATIONS" & vbCrLf & vbCrLf
	msg = msg & "Summarize any training, skills, licenses and/or certificates that may qualify you as being able to perform job related functions in the position for which you are applying." & vbCrLf
	msg = msg & Request.Form("SkillSummary") & vbCrLf & vbCrLf
	msg = msg & "REFERENCES" & vbCrLf & vbCrLf
	msg = msg & "(1)   First Name: " & Request.Form("ReferenceFirstName1") & vbCrLf
	msg = msg & "       Last Name: " & Request.Form("ReferenceLastName1") & vbCrLf
	msg = msg & "   Daytime Phone: (" & Request.Form("ReferenceDayArea1") & ") " & Request.Form("ReferenceDayPhone1") & " ext. " & Request.Form("ReferenceDayExt1") &  vbCrLf
	msg = msg & "     Years Known: " & Request.Form("ReferenceYearsKnown1") & vbCrLf & vbCrLf
	msg = msg & "(2)   First Name: " & Request.Form("ReferenceFirstName2") & vbCrLf
	msg = msg & "       Last Name: " & Request.Form("ReferenceLastName2") & vbCrLf
	msg = msg & "   Daytime Phone: (" & Request.Form("ReferenceDayArea2") & ") " & Request.Form("ReferenceDayPhone2") & " ext. " & Request.Form("ReferenceDayExt2") &  vbCrLf
	msg = msg & "     Years Known: " & Request.Form("ReferenceYearsKnown2") & vbCrLf & vbCrLf
	msg = msg & "(3)   First Name: " & Request.Form("ReferenceFirstName3") & vbCrLf
	msg = msg & "       Last Name: " & Request.Form("ReferenceLastName3") & vbCrLf
	msg = msg & "   Daytime Phone: (" & Request.Form("ReferenceDayArea3") & ") " & Request.Form("ReferenceDayPhone3") & " ext. " & Request.Form("ReferenceDayExt3") &  vbCrLf
	msg = msg & "     Years Known: " & Request.Form("ReferenceYearsKnown3") & vbCrLf & vbCrLf
	msg = msg & "EDUCATIONAL BACKGROUND" & vbCrLf & vbCrLf
	msg = msg & "              High School: " & Request.Form("HighSchool") & vbCrLf
	msg = msg & "Number of years completed: " & Request.Form("HSYears") & vbCrLf
	msg = msg & "         Did you graduate? " & Request.Form("HSGraduate") & vbCrLf
	msg = msg & "          Course of study: " & Request.Form("HSStudy") & vbCrLf & vbCrLf
	msg = msg & "                  College: " & Request.Form("College") & vbCrLf
	msg = msg & "Number of years completed: " & Request.Form("ColYears") & vbCrLf
	msg = msg & "         Did you graduate? " & Request.Form("ColGraduate") & vbCrLf
	msg = msg & "                    Major: " & Request.Form("ColMajor") & vbCrLf
	msg = msg & "                   Degree: " & Request.Form("ColDegree") & vbCrLf
	msg = msg & "          Course of study: " & Request.Form("ColStudy") & vbCrLf & vbCrLf
	msg = msg & "                    Other: " & Request.Form("OthSchool") & vbCrLf
	msg = msg & "Number of years completed: " & Request.Form("OthYears") & vbCrLf
	msg = msg & "         Did you graduate? " & Request.Form("OthGraduate") & vbCrLf
	msg = msg & "          Course of study: " & Request.Form("OthStudy") & vbCrLf & vbCrLf
	msg = msg & "How Did You Hear About Us: " & Request.Form("HowHear") & vbCrLf & vbCrLf
	msg = msg & "APPLICANT STATEMENT" & vbCrLf
	msg = msg & "I certify that all information I have provided in order to apply for and secure work with the employer is true, complete and correct." & vbCrLf & "I understand that any information provided by me that is found to be false, incomplete or misrepresented in any respect, will be sufficient cause to (1) cancel further consideration of this application, or (2) immediately discharge me from the employers service whenever it is discovered." & vbCrLf & "I expressly authorize, without reservation, the employer, its representatives, employees or agents to contact and obtain information from all references (personal and professional), employers, public agencies, licensing authorities and educational institutions and to otherwise verify the accuracy of all information provided by me in this application, resume or job interview. I hereby waive any and all rights and claims I may have regarding the employer, its agents, employees or representatives, for seeking, gathering and using such information in the employment process and all other persons, corporations or organizations for furnishing such information about me." & vbCrLf & "I understand that the employer does not unlawfully discriminate in employment and no question on this application is used for the purpose of limiting or excusing any applicant from consideration for employment on a basis prohibited by applicable local, state or federal law." & vbCrLf & "I understand that this application remains current for only 30 days. At the conclusion of that time, if I have not heard from the employer and still wish to be considered for employment, it will be necessary to reapply and fill out a new application." & vbCrLf & "If I am hired, I understand that I am free to resign at any time, with or without cause and without prior notice, and the employer reserves the same right to terminate my employment at any time, with or without cause and without prior notice, except as may be required by law. This application does not constitute an agreement or contract for employment for any specified period or definite duration. I understand that no supervisor or representative of the employer is authorized to make any assurances to the contrary and that no implied, oral or written agreements contrary to the foregoing express language are valid unless they are in written and signed by the employers president." & vbCrLf & "I also understand that if I am hired, I will be required to provide proof of identity and legal authority to work in the United States and that federal immigration laws require me to complete an I-9 Form in this regard." & vbCrLf & vbCrLf
	msg = msg & "DO NOT SUBMIT THIS FORM UNTIL YOU HAVE READ THE ABOVE APPLICANT STATEMENT." & vbCrLf & vbCrLf
	msg = msg & Agree & " I certify that I have read, fully understand and accept all terms of the foregoing Applicant Statement." & vbCrLf
	msg = msg & "Name: " & Request.Form("Name") & vbCrLf & vbCrLf


'NEW HOST

sendUrl="http://schemas.microsoft.com/cdo/configuration/sendusing"
smtpUrl="http://schemas.microsoft.com/cdo/configuration/smtpserver"

' Set the mail server configuration
Set objConfig=CreateObject("CDO.Configuration")
objConfig.Fields.Item(sendUrl)=2 ' cdoSendUsingPort
objConfig.Fields.Item(smtpUrl)="relay-hosting.secureserver.net"
objConfig.Fields.Update

' Create and send the mail
Set objMail=CreateObject("CDO.Message")

' Logic
SendToCC = EmailAddress
IF LocationsApplied = "..." Then
SendTo = "[email protected]"
StoreTestLink = "http://www.ondemandassessment.com/apply.php?id=4GAn9%2BNQgRw%3D&a=l7GtMXUGn4w%3D"
Else If LocationsApplied = "Brenneman Farm, VA" Then
SendTo = "[email protected]"
StoreTestLink = "http://www.ondemandassessment.com/apply.php?id=4GAn9%2BNQgRw%3D&a=l7GtMXUGn4w%3D"
Else If LocationsApplied = "La Promenade, VA" Then
SendTo = "[email protected]"
StoreTestLink = "http://www.ondemandassessment.com/apply.php?id=4GAn9%2BNQgRw%3D&a=l7GtMXUGn4w%3D"
Else If LocationsApplied = "Chesterfield, MO" Then
SendTo = "[email protected]"
StoreTestLink = "http://www.ondemandassessment.com/apply.php?id=yLNS6ErS86M%3D&a=bMsIrSNx/9A%3D"
Else
SendTo = "[email protected]"
StoreTestLink = "http://www.ondemandassessment.com/apply.php?id=6WqtAKAjlDI%3D"
End IF
End IF
END IF

Set objMail.Configuration=objConfig
objMail.From="[email protected]"
objMail.ReplyTo="[email protected]"
objMail.To=SendTo
objMail.CC=SendToCC
objMail.Subject="Employment Application"
objMail.TextBody=msg
objMail.Send

End If

%>
<html>

<head>
<meta content="IE=EmulateIE7" http-equiv="X-UA-Compatible">
<meta content="General" name="rating">
<meta content="EN-US" name="MS.LOCALE">
<meta content="index,follow" name="robots">
<meta content="http://www.massageluxe.com" name="URL">
<meta content="31 days" name="revisit-after">
<meta content="TRUE" name="MSSmartTagsPreventParsing">
<meta content="MassageLuxe" name="Title">
<meta content="Our mission at MassageLuxe is to deliver the highest quality massage by providing a comfortable, relaxing, and luxurious environment to all of our clients. MassageLuxe offers many different types of massage." name="description">
<meta content="massage, massage therapy, couples massage, massage membership, swedish massage, deep tissue, relaxation, gift cards, massageluxe, relax, membership, members" name="keywords">
<title>Massageluxe - Application Thank You</title>
<link href="favicon.ico" rel="shortcut icon">
<link href="css/style.css" rel="stylesheet" type="text/css">
<link href="favicon.ico" rel="shortcut icon">
<style type="text/css">
.style18 {
	background-image: url('images/ML-Banner.jpg');
	text-align: center;
}
.style19 {
	background-image: url('images/Navigation/Careers-Nav.jpg');
}
.style20 {
	background-image: url('application_thankyou.asp');
}
.style40 {
	border-width: 0;
	font-size: 16pt;
}
.style44 {
	text-align: center;
	color: #2A7782;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
}
.style49 {
	background-image: url('images/Locations/Location_850.jpg');
}
.style46 {
	color: #000000;
}
.style54 {
	border-width: 0px;
	font-size: 16pt;
}
.style26 {
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 8pt;
}
.style48 {
	color: #B6A790;
	font-size: 8pt;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bolder;
}
.style41 {
	color: #FFFFFF;
	font-size: 8pt;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bolder;
}
.style22 {
	color: #FFFFFF;
	font-size: 10pt;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bolder;
}
.style55 {
	color: #2A7782;
}
</style>
</head>

<body style="margin: 0px; font-family: Arial, Helvetica, sans-serif;">

<div align="center">
	<font face="Georgia">
	<div align="center">
		<table id="table1" border="0" cellpadding="0" cellspacing="0" width="827px">
			<tr>
				<td class="style18" style="height: 140px;" valign="top">
				<a href="default.htm">
				<img alt="MassageLuxe" class="style40" height="135px" src="images/clrBanner.gif" width="815px"></a></td>
			</tr>
			<tr>
				<td class="style19" style="height: 4;">
				<map id="FPMap1" name="FPMap1">
				<area coords="714, 4, 826, 33" href="Franchise.htm" shape="rect">
				<area coords="509, 4, 593, 33" href="Careers.htm" shape="rect">
				<area coords="604, 4, 702, 33" href="https://pconsite4.pconsite.com/CMS_MassageLuxe/POS/giftcards/onlinegiftcardcustomersearch.aspx" shape="rect" target="_blank">
				<area coords="404, 4, 499, 33" href="LocationsMO.htm" shape="rect">
				<area coords="306, 4, 392, 33" href="AboutUs.htm" shape="rect">
				<area coords="179, 4, 293, 33" href="Memberships.htm" shape="rect">
				<area coords="82, 4, 166, 33" href="Services.htm" shape="rect">
				<area coords="0, 4, 68, 33" href="default.htm" shape="rect">
				</map>
				<img alt="MassageLuxe" class="style54" height="39px" src="images/ClearMenu.gif" usemap="#FPMap1" width="827px"></td>
			</tr>
		</table>
	</div>
	</font></div>
<table id="table2" align="center" cellpadding="0" cellspacing="0" class="style20" style="width: 827px; height: 850px">
	<tr>
		<td valign="top">
		<table align="left" cellpadding="10" cellspacing="10" class="style49" style="width: 827px; height: 850px">
			<tr>
				<td class="style44" style="height: 375px" valign="top">
				<table align="center" cellpadding="10" cellspacing="0" style="width: 80%">
					<tr>
						<td class="style20"><span lang="en-us">
						<span class="style27"><strong>Application for Employment</strong></span></span></td>
					</tr>
					<tr>
						<td><font face="Tahoma"><b>
						<div align="center">
							<table id="table9" border="0" cellspacing="1" height="148" width="500">
								<tr>
									<td height="40"><b><font size="2">THANK YOU!</font></b></td>
								</tr>
								<tr>
									<td height="40"><font face="Tahoma"><b>
									<font size="2">Your application has been sent 
									successfully. We will be reviewing it soon, 
									and will contact you if we have any further 
									questions or comments.<br><br>
									<span class="style55">Please click the image 
									link below to complete a quick test.</span><br>
									<br>
									<a href="<%=StoreTestLink%>" target="_blank">
									<img alt="Criteria On Demand Assessment" height="70" src="images/CriteriaTestIcon.jpg" style="border-width: 0px" width="404"></a>
									</font></b></font>
									<p><font face="Tahoma"><b><font size="2">Thanks 
									again, <br><span lang="en-us">MassageLuxe</span> 
									Management</font></b></font></p>
									</td>
								</tr>
							</table>
						</div>
						</b></font></td>
					</tr>
				</table>
				</td>
			</tr>
			<tr>
				<td class="style44" valign="bottom"><span lang="en-us">
				<a href="contactus.asp"><span class="style26">CONTACT US</span></a><span class="style46">&nbsp;
				</span><span class="style48">|</span><span class="style41">
				</span><span class="style26">&nbsp;<a href="default.htm">HOME</a>&nbsp;
				<span class="style48">|&nbsp; </span></span></span>
				<a href="services.htm"><span class="style26">SERVICES</span></a><span class="style26">&nbsp;
				</span><span class="style48">|</span><span class="style41">
				</span><span class="style26">&nbsp;</span><a href="memberships.htm"><span class="style26">MEMBERSHIPS</span></a><span class="style26">&nbsp;
				</span><span class="style48">|</span><span class="style41">
				</span><span class="style26">&nbsp;<a href="AboutUs.htm">ABOUT US</a></span><br>
				<span class="style26"><a href="LocationsMO.htm">LOCATIONS</a>&nbsp;
				<span class="style48">|</span></span><span class="style22">
				</span><span class="style26">&nbsp;</span><a href="careers.htm"><span class="style26">CAREERS</span></a><span class="style26">
				</span><span class="style41">&nbsp;</span><span class="style48">|</span><span class="style26">&nbsp;
				</span>
				<a href="https://pconsite4.pconsite.com/CMS_MassageLuxe/POS/giftcards/onlinegiftcardcustomersearch.aspx" target="_blank">
				<span class="style26">GIFT CARDS</span></a><span class="style26">&nbsp;
				</span><span class="style48">|</span><span class="style26">&nbsp;
				</span><a href="Franchise.htm"><span class="style26">FRANCHISE</span></a></td>
			</tr>
		</table>
		</td>
	</tr>
</table>
<script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script>
<script type="text/javascript"> var pageTracker = _gat._getTracker("UA-6604746-3"); pageTracker._initData(); pageTracker._trackPageview(); </script>

</body>

</html>

Answer : Classic ASP form to email sending empty email?

I would recommend that you throw the objects away as well at the end of the mail call

Set Objmail = Nothing

etc
Random Solutions  
 
programming4us programming4us