[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.4

Clicking on white space jumps user to different part of form

Asked by monica73174 in Hypertext Markup Language (HTML)

Tags: HTML

I have this huge survey that I have inherited to work on.  For some reason it jumps to a different place in the form when you click on the white space after you get to section 6 of the document.  I guess I am just looking for someone else to take a look at it since I can't seem to find out why this is happening.  I have included the code below and attached the external javascrpt file as a zip file incase that helps.  
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:
2021:
2022:
2023:
2024:
2025:
2026:
2027:
2028:
2029:
2030:
2031:
2032:
2033:
2034:
2035:
2036:
2037:
2038:
2039:
2040:
2041:
2042:
2043:
2044:
2045:
2046:
2047:
2048:
2049:
2050:
2051:
2052:
2053:
2054:
2055:
2056:
2057:
2058:
2059:
2060:
2061:
2062:
2063:
2064:
2065:
2066:
2067:
2068:
2069:
2070:
2071:
2072:
2073:
2074:
2075:
2076:
2077:
2078:
2079:
2080:
2081:
2082:
2083:
2084:
2085:
2086:
2087:
2088:
2089:
2090:
2091:
2092:
2093:
2094:
2095:
2096:
2097:
2098:
2099:
2100:
2101:
2102:
2103:
2104:
2105:
2106:
2107:
2108:
2109:
2110:
2111:
2112:
2113:
2114:
2115:
2116:
2117:
2118:
2119:
2120:
2121:
2122:
2123:
2124:
2125:
2126:
2127:
2128:
2129:
2130:
2131:
2132:
2133:
2134:
2135:
2136:
2137:
2138:
2139:
2140:
2141:
2142:
2143:
2144:
2145:
2146:
2147:
2148:
2149:
2150:
2151:
2152:
2153:
2154:
2155:
2156:
2157:
2158:
2159:
2160:
2161:
2162:
2163:
2164:
2165:
2166:
2167:
2168:
2169:
2170:
2171:
2172:
2173:
2174:
2175:
2176:
2177:
2178:
2179:
2180:
2181:
2182:
2183:
2184:
2185:
2186:
2187:
2188:
2189:
2190:
2191:
2192:
2193:
2194:
2195:
2196:
2197:
2198:
2199:
2200:
2201:
2202:
2203:
2204:
2205:
2206:
2207:
2208:
2209:
2210:
2211:
2212:
2213:
2214:
2215:
2216:
2217:
2218:
2219:
2220:
2221:
2222:
2223:
2224:
2225:
2226:
2227:
2228:
2229:
2230:
2231:
2232:
2233:
2234:
2235:
2236:
2237:
2238:
2239:
2240:
2241:
2242:
2243:
2244:
2245:
2246:
2247:
2248:
2249:
2250:
2251:
2252:
2253:
2254:
2255:
2256:
2257:
2258:
2259:
2260:
2261:
2262:
2263:
2264:
2265:
2266:
2267:
2268:
2269:
2270:
2271:
2272:
2273:
2274:
2275:
2276:
2277:
2278:
2279:
2280:
2281:
2282:
2283:
2284:
2285:
2286:
2287:
2288:
2289:
2290:
2291:
2292:
2293:
2294:
2295:
2296:
2297:
2298:
2299:
2300:
2301:
2302:
2303:
2304:
2305:
2306:
2307:
2308:
2309:
2310:
2311:
2312:
2313:
2314:
2315:
2316:
2317:
2318:
2319:
2320:
2321:
2322:
2323:
2324:
2325:
2326:
2327:
2328:
2329:
2330:
2331:
2332:
2333:
2334:
2335:
2336:
2337:
2338:
2339:
2340:
2341:
2342:
2343:
2344:
2345:
2346:
2347:
2348:
2349:
2350:
2351:
2352:
2353:
2354:
2355:
2356:
2357:
2358:
2359:
2360:
2361:
2362:
2363:
2364:
2365:
2366:
2367:
2368:
2369:
2370:
2371:
2372:
2373:
2374:
2375:
2376:
2377:
2378:
2379:
2380:
2381:
2382:
2383:
2384:
2385:
2386:
2387:
2388:
2389:
2390:
2391:
2392:
2393:
2394:
2395:
2396:
2397:
2398:
2399:
2400:
2401:
2402:
2403:
2404:
2405:
2406:
2407:
2408:
2409:
2410:
2411:
2412:
2413:
2414:
2415:
2416:
2417:
2418:
2419:
2420:
2421:
2422:
2423:
2424:
2425:
2426:
2427:
2428:
2429:
2430:
2431:
2432:
2433:
2434:
2435:
2436:
2437:
2438:
2439:
2440:
2441:
2442:
2443:
2444:
2445:
2446:
2447:
2448:
2449:
2450:
2451:
2452:
2453:
2454:
2455:
2456:
2457:
2458:
2459:
2460:
2461:
2462:
2463:
2464:
2465:
2466:
2467:
2468:
2469:
2470:
2471:
2472:
2473:
2474:
2475:
2476:
2477:
2478:
2479:
2480:
2481:
2482:
2483:
2484:
2485:
2486:
2487:
2488:
2489:
2490:
2491:
2492:
2493:
2494:
2495:
2496:
2497:
2498:
2499:
2500:
2501:
2502:
2503:
2504:
2505:
2506:
2507:
2508:
2509:
2510:
2511:
2512:
2513:
2514:
2515:
2516:
2517:
2518:
2519:
2520:
2521:
2522:
2523:
2524:
2525:
2526:
2527:
2528:
2529:
2530:
2531:
2532:
2533:
2534:
2535:
2536:
2537:
2538:
2539:
2540:
2541:
2542:
2543:
2544:
2545:
2546:
2547:
2548:
2549:
2550:
2551:
2552:
2553:
2554:
2555:
2556:
2557:
2558:
2559:
2560:
2561:
2562:
2563:
2564:
2565:
2566:
2567:
2568:
2569:
2570:
2571:
2572:
2573:
2574:
2575:
2576:
2577:
2578:
2579:
2580:
2581:
2582:
2583:
2584:
2585:
2586:
2587:
2588:
2589:
2590:
2591:
2592:
2593:
2594:
2595:
2596:
2597:
2598:
2599:
2600:
2601:
2602:
2603:
2604:
2605:
2606:
2607:
2608:
2609:
2610:
2611:
2612:
2613:
2614:
2615:
2616:
2617:
2618:
2619:
2620:
2621:
2622:
2623:
2624:
2625:
2626:
2627:
2628:
2629:
2630:
2631:
2632:
2633:
2634:
2635:
2636:
2637:
2638:
2639:
2640:
2641:
2642:
2643:
2644:
2645:
2646:
2647:
2648:
2649:
2650:
2651:
2652:
2653:
2654:
2655:
2656:
2657:
2658:
2659:
2660:
2661:
2662:
2663:
2664:
2665:
2666:
2667:
2668:
2669:
2670:
2671:
2672:
2673:
2674:
2675:
2676:
2677:
2678:
2679:
2680:
2681:
2682:
2683:
2684:
2685:
2686:
2687:
2688:
2689:
2690:
2691:
2692:
2693:
2694:
2695:
2696:
2697:
2698:
2699:
2700:
2701:
2702:
2703:
2704:
2705:
2706:
2707:
2708:
2709:
2710:
2711:
2712:
2713:
2714:
2715:
2716:
2717:
2718:
2719:
2720:
2721:
2722:
2723:
2724:
2725:
2726:
2727:
2728:
2729:
2730:
2731:
2732:
2733:
2734:
2735:
2736:
2737:
2738:
2739:
2740:
2741:
2742:
2743:
2744:
2745:
2746:
2747:
2748:
2749:
2750:
2751:
2752:
2753:
2754:
2755:
2756:
2757:
2758:
2759:
2760:
2761:
2762:
2763:
2764:
2765:
2766:
2767:
2768:
2769:
2770:
2771:
2772:
2773:
2774:
2775:
2776:
2777:
2778:
2779:
2780:
2781:
2782:
2783:
2784:
2785:
2786:
2787:
2788:
2789:
2790:
2791:
2792:
2793:
2794:
2795:
2796:
2797:
2798:
2799:
2800:
2801:
2802:
2803:
2804:
2805:
2806:
2807:
2808:
2809:
2810:
2811:
2812:
2813:
2814:
2815:
2816:
2817:
2818:
2819:
2820:
2821:
2822:
2823:
2824:
2825:
2826:
2827:
2828:
2829:
2830:
2831:
2832:
2833:
2834:
2835:
2836:
2837:
2838:
2839:
2840:
2841:
2842:
2843:
2844:
2845:
2846:
2847:
2848:
2849:
2850:
2851:
2852:
2853:
2854:
2855:
2856:
2857:
2858:
2859:
2860:
2861:
2862:
2863:
2864:
2865:
2866:
2867:
2868:
2869:
2870:
2871:
2872:
2873:
2874:
2875:
2876:
2877:
2878:
2879:
2880:
2881:
2882:
2883:
2884:
2885:
2886:
2887:
2888:
2889:
2890:
2891:
2892:
2893:
2894:
2895:
2896:
2897:
2898:
2899:
2900:
2901:
2902:
2903:
2904:
2905:
2906:
2907:
2908:
2909:
2910:
2911:
2912:
2913:
2914:
2915:
2916:
2917:
2918:
2919:
2920:
2921:
2922:
2923:
2924:
2925:
2926:
2927:
2928:
2929:
2930:
2931:
2932:
2933:
2934:
2935:
2936:
2937:
2938:
2939:
2940:
2941:
2942:
2943:
2944:
2945:
2946:
2947:
2948:
2949:
2950:
2951:
2952:
2953:
2954:
2955:
2956:
2957:
2958:
2959:
2960:
2961:
2962:
2963:
2964:
2965:
2966:
2967:
2968:
2969:
2970:
2971:
2972:
2973:
2974:
2975:
2976:
2977:
2978:
2979:
2980:
2981:
2982:
2983:
2984:
2985:
2986:
2987:
2988:
2989:
2990:
2991:
2992:
2993:
2994:
2995:
2996:
2997:
2998:
2999:
3000:
3001:
3002:
3003:
3004:
3005:
3006:
3007:
3008:
3009:
3010:
3011:
3012:
3013:
3014:
3015:
3016:
3017:
3018:
3019:
3020:
3021:
3022:
3023:
3024:
3025:
3026:
3027:
3028:
3029:
3030:
3031:
3032:
3033:
3034:
3035:
3036:
3037:
3038:
3039:
3040:
3041:
3042:
3043:
3044:
3045:
3046:
3047:
3048:
3049:
3050:
3051:
3052:
3053:
3054:
3055:
3056:
3057:
3058:
3059:
3060:
3061:
3062:
3063:
3064:
3065:
3066:
3067:
3068:
3069:
3070:
3071:
3072:
3073:
3074:
3075:
3076:
3077:
3078:
3079:
3080:
3081:
3082:
3083:
3084:
3085:
3086:
3087:
3088:
3089:
3090:
3091:
3092:
3093:
3094:
3095:
3096:
3097:
3098:
3099:
3100:
3101:
3102:
3103:
3104:
3105:
3106:
3107:
3108:
3109:
3110:
3111:
3112:
3113:
3114:
3115:
3116:
3117:
3118:
3119:
3120:
3121:
3122:
3123:
3124:
3125:
3126:
3127:
3128:
3129:
3130:
3131:
3132:
3133:
3134:
3135:
3136:
3137:
3138:
3139:
3140:
3141:
3142:
3143:
3144:
3145:
3146:
3147:
3148:
3149:
3150:
3151:
3152:
3153:
3154:
3155:
3156:
3157:
3158:
3159:
3160:
3161:
3162:
3163:
3164:
3165:
3166:
3167:
3168:
3169:
3170:
3171:
3172:
3173:
3174:
3175:
3176:
3177:
3178:
3179:
3180:
3181:
3182:
3183:
3184:
3185:
3186:
3187:
3188:
3189:
3190:
3191:
3192:
3193:
3194:
3195:
3196:
3197:
3198:
3199:
3200:
3201:
3202:
3203:
3204:
3205:
3206:
3207:
3208:
3209:
3210:
3211:
3212:
3213:
3214:
3215:
3216:
3217:
3218:
3219:
3220:
3221:
3222:
3223:
3224:
3225:
3226:
3227:
3228:
3229:
3230:
3231:
3232:
3233:
3234:
3235:
3236:
3237:
3238:
3239:
3240:
3241:
3242:
3243:
3244:
3245:
3246:
3247:
3248:
3249:
3250:
3251:
3252:
3253:
3254:
3255:
3256:
3257:
3258:
3259:
3260:
3261:
3262:
3263:
3264:
3265:
3266:
3267:
3268:
3269:
3270:
3271:
3272:
3273:
3274:
3275:
3276:
3277:
3278:
3279:
3280:
3281:
3282:
3283:
3284:
3285:
3286:
3287:
3288:
3289:
3290:
3291:
3292:
3293:
3294:
3295:
3296:
3297:
3298:
3299:
3300:
3301:
3302:
3303:
3304:
3305:
3306:
3307:
3308:
3309:
3310:
3311:
3312:
3313:
3314:
3315:
3316:
3317:
3318:
3319:
3320:
3321:
3322:
3323:
3324:
3325:
3326:
3327:
3328:
3329:
3330:
3331:
3332:
3333:
3334:
3335:
3336:
3337:
3338:
3339:
3340:
3341:
3342:
3343:
3344:
3345:
3346:
3347:
3348:
3349:
3350:
3351:
3352:
3353:
3354:
3355:
3356:
3357:
3358:
3359:
3360:
3361:
3362:
3363:
3364:
3365:
3366:
3367:
3368:
3369:
3370:
3371:
3372:
3373:
3374:
3375:
3376:
3377:
3378:
3379:
3380:
3381:
3382:
3383:
3384:
3385:
3386:
3387:
3388:
3389:
3390:
3391:
3392:
3393:
3394:
3395:
3396:
3397:
3398:
3399:
3400:
3401:
3402:
3403:
3404:
3405:
3406:
3407:
3408:
3409:
3410:
3411:
3412:
3413:
3414:
3415:
3416:
3417:
3418:
3419:
3420:
3421:
3422:
3423:
3424:
3425:
3426:
3427:
3428:
3429:
3430:
3431:
3432:
3433:
3434:
3435:
3436:
3437:
3438:
3439:
3440:
3441:
3442:
3443:
3444:
3445:
3446:
3447:
3448:
3449:
3450:
3451:
3452:
3453:
3454:
3455:
3456:
3457:
3458:
3459:
3460:
3461:
3462:
3463:
3464:
3465:
3466:
3467:
3468:
3469:
3470:
3471:
3472:
3473:
3474:
3475:
3476:
3477:
3478:
3479:
3480:
3481:
3482:
3483:
3484:
3485:
3486:
3487:
3488:
3489:
3490:
3491:
3492:
3493:
3494:
3495:
3496:
3497:
3498:
3499:
3500:
3501:
3502:
3503:
3504:
3505:
3506:
3507:
3508:
3509:
3510:
3511:
3512:
3513:
3514:
3515:
3516:
3517:
3518:
3519:
3520:
3521:
3522:
3523:
3524:
3525:
3526:
3527:
3528:
3529:
3530:
3531:
3532:
3533:
3534:
3535:
3536:
3537:
3538:
3539:
3540:
3541:
3542:
3543:
3544:
3545:
3546:
3547:
3548:
3549:
3550:
3551:
3552:
3553:
3554:
3555:
3556:
3557:
3558:
3559:
3560:
3561:
3562:
3563:
3564:
3565:
3566:
3567:
3568:
3569:
3570:
3571:
3572:
3573:
3574:
3575:
3576:
3577:
3578:
3579:
3580:
3581:
3582:
3583:
3584:
3585:
3586:
3587:
3588:
3589:
3590:
3591:
3592:
3593:
3594:
3595:
3596:
3597:
3598:
3599:
3600:
3601:
3602:
3603:
3604:
3605:
3606:
3607:
3608:
3609:
3610:
3611:
3612:
3613:
3614:
3615:
3616:
3617:
3618:
3619:
3620:
3621:
3622:
3623:
3624:
3625:
3626:
3627:
3628:
3629:
3630:
3631:
3632:
3633:
3634:
3635:
3636:
3637:
3638:
3639:
3640:
3641:
3642:
3643:
3644:
3645:
3646:
3647:
3648:
3649:
3650:
3651:
3652:
3653:
3654:
3655:
3656:
3657:
3658:
3659:
3660:
3661:
3662:
3663:
3664:
3665:
3666:
3667:
3668:
3669:
3670:
3671:
3672:
3673:
3674:
3675:
3676:
3677:
3678:
3679:
3680:
3681:
3682:
3683:
3684:
3685:
3686:
3687:
3688:
3689:
3690:
3691:
3692:
3693:
3694:
3695:
3696:
3697:
3698:
3699:
3700:
3701:
3702:
3703:
3704:
3705:
3706:
3707:
3708:
3709:
3710:
3711:
3712:
3713:
3714:
3715:
3716:
3717:
3718:
3719:
3720:
3721:
3722:
3723:
3724:
3725:
3726:
3727:
3728:
3729:
3730:
3731:
3732:
3733:
3734:
3735:
3736:
3737:
3738:
3739:
3740:
3741:
3742:
3743:
3744:
3745:
3746:
3747:
3748:
3749:
3750:
3751:
3752:
3753:
3754:
3755:
3756:
3757:
3758:
3759:
3760:
3761:
3762:
3763:
3764:
3765:
3766:
3767:
3768:
3769:
3770:
3771:
3772:
3773:
3774:
3775:
3776:
3777:
3778:
3779:
3780:
3781:
3782:
3783:
3784:
3785:
3786:
3787:
3788:
3789:
3790:
3791:
3792:
3793:
3794:
3795:
3796:
3797:
3798:
3799:
3800:
3801:
3802:
3803:
3804:
3805:
3806:
3807:
3808:
3809:
3810:
3811:
3812:
3813:
3814:
3815:
3816:
3817:
3818:
3819:
3820:
3821:
3822:
3823:
3824:
3825:
3826:
3827:
3828:
3829:
3830:
3831:
3832:
3833:
3834:
3835:
3836:
3837:
3838:
3839:
3840:
3841:
3842:
3843:
3844:
3845:
3846:
3847:
3848:
3849:
3850:
3851:
3852:
3853:
3854:
3855:
3856:
3857:
3858:
3859:
3860:
3861:
3862:
3863:
3864:
3865:
3866:
3867:
3868:
3869:
3870:
3871:
3872:
3873:
3874:
3875:
3876:
3877:
3878:
3879:
3880:
3881:
3882:
3883:
3884:
3885:
3886:
3887:
3888:
3889:
3890:
3891:
3892:
3893:
3894:
3895:
3896:
3897:
3898:
3899:
3900:
3901:
3902:
3903:
3904:
3905:
3906:
3907:
3908:
3909:
3910:
3911:
3912:
3913:
3914:
3915:
3916:
3917:
3918:
3919:
3920:
3921:
3922:
3923:
3924:
3925:
3926:
3927:
3928:
3929:
3930:
3931:
3932:
3933:
3934:
3935:
3936:
3937:
3938:
3939:
3940:
3941:
3942:
3943:
3944:
3945:
3946:
3947:
3948:
3949:
3950:
3951:
3952:
3953:
3954:
3955:
3956:
3957:
3958:
3959:
3960:
3961:
3962:
3963:
3964:
3965:
3966:
3967:
3968:
3969:
3970:
3971:
3972:
3973:
3974:
3975:
3976:
3977:
3978:
3979:
3980:
3981:
3982:
3983:
3984:
3985:
3986:
3987:
3988:
3989:
3990:
3991:
3992:
3993:
3994:
3995:
3996:
3997:
3998:
3999:
4000:
4001:
4002:
4003:
4004:
4005:
4006:
4007:
4008:
4009:
4010:
4011:
4012:
4013:
4014:
4015:
4016:
4017:
4018:
4019:
4020:
4021:
4022:
4023:
4024:
4025:
4026:
4027:
4028:
4029:
4030:
4031:
4032:
4033:
4034:
4035:
4036:
4037:
4038:
4039:
4040:
4041:
4042:
4043:
4044:
4045:
4046:
4047:
4048:
4049:
4050:
4051:
4052:
4053:
4054:
4055:
4056:
4057:
4058:
4059:
4060:
4061:
4062:
4063:
4064:
4065:
4066:
4067:
4068:
4069:
4070:
4071:
4072:
4073:
4074:
4075:
4076:
4077:
4078:
4079:
4080:
4081:
4082:
4083:
4084:
4085:
4086:
4087:
4088:
4089:
4090:
4091:
4092:
4093:
4094:
4095:
4096:
4097:
4098:
4099:
4100:
4101:
4102:
4103:
4104:
4105:
4106:
4107:
4108:
4109:
4110:
4111:
4112:
4113:
4114:
4115:
4116:
4117:
4118:
4119:
4120:
4121:
4122:
4123:
4124:
4125:
4126:
4127:
4128:
4129:
4130:
4131:
4132:
4133:
4134:
4135:
4136:
4137:
4138:
4139:
4140:
4141:
4142:
4143:
4144:
4145:
4146:
4147:
4148:
4149:
4150:
4151:
4152:
4153:
4154:
4155:
4156:
4157:
4158:
4159:
4160:
4161:
4162:
4163:
4164:
4165:
4166:
4167:
4168:
4169:
4170:
4171:
4172:
4173:
4174:
4175:
4176:
4177:
4178:
4179:
4180:
4181:
4182:
4183:
4184:
4185:
4186:
4187:
4188:
4189:
4190:
4191:
4192:
4193:
4194:
4195:
4196:
4197:
4198:
4199:
4200:
4201:
4202:
4203:
4204:
4205:
4206:
4207:
4208:
4209:
4210:
4211:
4212:
4213:
4214:
4215:
4216:
4217:
4218:
4219:
4220:
4221:
4222:
4223:
4224:
4225:
4226:
4227:
4228:
4229:
4230:
4231:
4232:
4233:
4234:
4235:
4236:
4237:
4238:
4239:
4240:
4241:
4242:
4243:
4244:
4245:
4246:
4247:
4248:
4249:
4250:
4251:
4252:
4253:
4254:
4255:
4256:
4257:
4258:
4259:
4260:
4261:
4262:
4263:
4264:
4265:
4266:
4267:
4268:
4269:
4270:
4271:
4272:
4273:
4274:
4275:
4276:
4277:
4278:
4279:
4280:
4281:
4282:
4283:
4284:
4285:
4286:
4287:
4288:
4289:
4290:
4291:
4292:
4293:
4294:
4295:
4296:
4297:
4298:
4299:
4300:
4301:
4302:
4303:
4304:
4305:
4306:
4307:
4308:
4309:
4310:
4311:
4312:
4313:
4314:
4315:
4316:
4317:
4318:
4319:
4320:
4321:
4322:
4323:
4324:
4325:
4326:
4327:
4328:
4329:
4330:
4331:
4332:
4333:
4334:
4335:
4336:
4337:
4338:
4339:
4340:
4341:
4342:
4343:
4344:
4345:
4346:
4347:
4348:
4349:
4350:
4351:
4352:
4353:
4354:
4355:
4356:
4357:
4358:
4359:
4360:
4361:
4362:
4363:
4364:
4365:
4366:
4367:
4368:
4369:
4370:
4371:
4372:
4373:
4374:
4375:
4376:
4377:
4378:
4379:
4380:
4381:
4382:
4383:
4384:
4385:
4386:
4387:
4388:
4389:
4390:
4391:
4392:
4393:
4394:
4395:
4396:
4397:
4398:
4399:
4400:
4401:
4402:
4403:
4404:
4405:
4406:
4407:
4408:
4409:
4410:
4411:
4412:
4413:
4414:
4415:
4416:
4417:
4418:
4419:
4420:
4421:
4422:
4423:
4424:
4425:
4426:
4427:
4428:
4429:
4430:
4431:
4432:
4433:
4434:
4435:
4436:
4437:
4438:
4439:
4440:
4441:
4442:
4443:
4444:
4445:
4446:
4447:
4448:
4449:
4450:
4451:
4452:
4453:
4454:
4455:
4456:
4457:
4458:
4459:
4460:
4461:
4462:
4463:
4464:
4465:
4466:
4467:
4468:
4469:
4470:
4471:
4472:
4473:
4474:
4475:
4476:
4477:
4478:
4479:
4480:
4481:
4482:
4483:
4484:
4485:
4486:
4487:
4488:
4489:
4490:
4491:
4492:
4493:
4494:
4495:
4496:
4497:
4498:
4499:
4500:
4501:
4502:
4503:
4504:
4505:
4506:
4507:
4508:
4509:
4510:
4511:
4512:
4513:
4514:
4515:
4516:
4517:
4518:
4519:
4520:
4521:
4522:
4523:
4524:
4525:
4526:
4527:
4528:
4529:
4530:
4531:
4532:
4533:
4534:
4535:
4536:
4537:
4538:
4539:
4540:
4541:
4542:
4543:
4544:
4545:
4546:
4547:
4548:
4549:
4550:
4551:
4552:
4553:
4554:
4555:
4556:
4557:
4558:
4559:
4560:
4561:
4562:
4563:
4564:
4565:
4566:
4567:
4568:
4569:
4570:
4571:
4572:
4573:
4574:
4575:
4576:
4577:
4578:
4579:
4580:
4581:
4582:
4583:
4584:
4585:
4586:
4587:
4588:
4589:
4590:
4591:
4592:
4593:
4594:
4595:
4596:
4597:
4598:
4599:
4600:
4601:
4602:
4603:
4604:
4605:
4606:
4607:
4608:
4609:
4610:
4611:
4612:
4613:
4614:
4615:
4616:
4617:
4618:
4619:
4620:
4621:
4622:
4623:
4624:
4625:
4626:
4627:
4628:
4629:
4630:
4631:
4632:
4633:
4634:
4635:
4636:
4637:
4638:
4639:
4640:
4641:
4642:
4643:
4644:
4645:
4646:
4647:
4648:
4649:
4650:
4651:
4652:
4653:
4654:
4655:
4656:
4657:
4658:
4659:
4660:
4661:
4662:
4663:
4664:
4665:
4666:
4667:
4668:
4669:
4670:
4671:
4672:
4673:
4674:
4675:
4676:
4677:
4678:
4679:
4680:
4681:
4682:
4683:
4684:
4685:
4686:
4687:
4688:
4689:
4690:
4691:
4692:
4693:
4694:
4695:
4696:
4697:
4698:
4699:
4700:
4701:
4702:
4703:
4704:
4705:
4706:
4707:
4708:
4709:
4710:
4711:
4712:
4713:
4714:
4715:
4716:
4717:
4718:
4719:
4720:
4721:
4722:
4723:
4724:
4725:
4726:
4727:
4728:
4729:
4730:
4731:
4732:
4733:
4734:
4735:
4736:
4737:
4738:
4739:
4740:
4741:
4742:
4743:
4744:
4745:
4746:
4747:
4748:
4749:
4750:
4751:
4752:
4753:
4754:
4755:
4756:
4757:
4758:
4759:
4760:
4761:
4762:
4763:
4764:
4765:
4766:
4767:
4768:
4769:
4770:
4771:
4772:
4773:
4774:
4775:
4776:
4777:
4778:
4779:
4780:
4781:
4782:
4783:
4784:
4785:
4786:
4787:
4788:
4789:
4790:
4791:
4792:
4793:
4794:
4795:
4796:
4797:
4798:
4799:
4800:
4801:
4802:
4803:
4804:
4805:
4806:
4807:
4808:
4809:
4810:
4811:
4812:
4813:
4814:
4815:
4816:
4817:
4818:
4819:
4820:
4821:
4822:
4823:
4824:
4825:
4826:
4827:
4828:
4829:
4830:
4831:
4832:
4833:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
<html>
<head>
<!-- If you were emailed this survey, you will need to save it to disk and view it in a web browser,
Since your email program does not support HTML. -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="generator" content="Perseus SurveySolutions (http://www.perseus.com/fromsurv.htm)" />
<title>IPC Wage Rate &amp; Salary Survey</title>
<script type="text/javascript" src="../ipcGlobal.js"></script>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function printPage1(){
	window.print(); 
}
   
//disable the 'Enter' key
function noenter() {
	return !(window.event && window.event.keyCode == 13); 
}
 
//disable the 'Esc' key
document.onkeydown = CheckMyKeys; 
function CheckMyKeys(){ 
    var key = event.keyCode; 
    if ( key==27 || key==116){ 
        // ESC or F5, so cancel 
        event.keyCode = 0; 
        event.cancelBubble = true; 
        return false; 
    } 
}
 
function reset_form(){
 
	if ( confirm("Are you sure that you want to reset this form?") ){  
		window.document.PdcSurvey.reset();  
	}  
	else{ 
		window.document.PdcSurvey.resetButton.focus(); 
	}  
}
//  End -->
</script>
 
<script language="javascript">
//this is highest level
function jsSubmitForm(){
	if(jsSubmit())
		window.document.PdcSurvey.submit();
}
 
function jsSubmit(){
	
	//General Information
	if (!jsGeneral())
		return false;
	//Wage Rate Survey
	else if (!jsWageRate())
		return false;
	//Salary Survey
	else if (!jsSalary())
		return false;
	//Sales Compensation Survey
	else if (!jsSalesSurvey())
		return false;
	//Demographics
	else if (!jsDemo())
		return false;
	//Personnel & Compensation Policies
	else if (!jsPersonnel())
		return false;
	//Benefits and Other Compensation
	else if (!jsBenefits())
		return false;
	//Sales Compensation Structure
	else if (!jsSalesStructure())
		return false;
	else{
		if (confirm("Are you sure you want to submit the survey?")){
			document.PdcSurvey.PdcButtonPressed.value = 'submit';
			return true;
		}
		else
			return false;
	}
}
 
//General Information
function jsGeneral(){
	
	var msg, title;
	title = "I. General Information\n\n";
	msg = "";
	
	//build the msg
	if (trim(document.PdcSurvey.Q1001_1.value) != "320")
		msg = msg + "Please enter a correct Survey Access Code.\n";
	if (trim(document.PdcSurvey.Q1001_2.value) == "")
		msg = msg + "Please enter a IPC Company Code.\n";
	if (trim(document.PdcSurvey.Q1001_3.value) == "")
		msg = msg + "Please enter a Name.\n";
	if (trim(document.PdcSurvey.Q1001_4.value) == "")
		msg = msg + "Please enter a Title.\n";
	//Email	
	if (trim(document.PdcSurvey.Q1001_5.value) == "")
		msg = msg + "Please enter an Email.\n";
	else
		if (!jsEmailCheck(trim(document.PdcSurvey.Q1001_5.value)))
			msg = msg + "Please enter a valid Email.\n";
	//Phone		
	if (trim(document.PdcSurvey.Q1001_6.value) == "")
		msg = msg + "Please enter a Phone.\n";
	else
		if (checkInternationalPhone(trim(document.PdcSurvey.Q1001_6.value)) == false)
			msg = msg + "Please enter a valid Phone.\n";
	//Fax
	if (trim(document.PdcSurvey.Q1001_7.value) == "")
		msg = msg + "Please enter a Fax.\n";
	else
		if (checkInternationalPhone(trim(document.PdcSurvey.Q1001_7.value)) == false)
			msg = msg + "Please enter a valid Fax.\n";
	//Check product type
	bChecked = false;
	for (i = 0; i < document.PdcSurvey.Q1002.length; i++)
		if (document.PdcSurvey.Q1002[i].checked){
			bChecked = true;
			break;
		}
	if (!bChecked)
		msg = msg + "(Question I.1) Please 'Indicate your company's primary product type.'\n";
		
	
			
	if (msg != ""){
		alert(title + msg);
		//looking for the anchor in anchors array
		for (var i = 0; i < document.anchors.length; i ++)
			if (document.anchors.item(i).id == "Q1001"){
				//move to General Information area
				this.location.hash = "Q1001";
				break;
			}
				
		return false;
	}
	else
		return true;
}
 
//Wage Rate Survey
function jsWageRate(){
 
	var msg, title;
	title = "II. Wage Rate Survey\n\n";
	msg = "";
	
	if (trim(document.PdcSurvey.Q10021_1.value) != "" || trim(document.PdcSurvey.Q10022_1.value) != "" || trim(document.PdcSurvey.Q10023_1.value) != "" || trim(document.PdcSurvey.Q10024_1.value) != ""){
		if (trim(document.PdcSurvey.Q10021_1.value) == "" || trim(document.PdcSurvey.Q10022_1.value) == "" || trim(document.PdcSurvey.Q10023_1.value) == "" || trim(document.PdcSurvey.Q10024_1.value) == "")
			msg = msg + "(Question II.) Accounts Payable Administrator, If data is entered for one field all fields must have data.\n"; 
	}
	if (trim(document.PdcSurvey.Q10021_2.value) != "" || trim(document.PdcSurvey.Q10022_2.value) != "" || trim(document.PdcSurvey.Q10023_2.value) != "" || trim(document.PdcSurvey.Q10024_2.value) != "")
		if (trim(document.PdcSurvey.Q10021_2.value) == "" || trim(document.PdcSurvey.Q10022_2.value) == "" || trim(document.PdcSurvey.Q10023_2.value) == "" || trim(document.PdcSurvey.Q10024_2.value) == "")
			msg = msg + "(Question II.) Credit Supervisor, If data is entered for one field all fields must have data.\n"; 
			
	if (trim(document.PdcSurvey.Q10021_3.value) != "" || trim(document.PdcSurvey.Q10022_3.value) != "" || trim(document.PdcSurvey.Q10023_3.value) != "" || trim(document.PdcSurvey.Q10024_3.value) != "")
		if (trim(document.PdcSurvey.Q10021_3.value) == "" || trim(document.PdcSurvey.Q10022_3.value) == "" || trim(document.PdcSurvey.Q10023_3.value) == "" || trim(document.PdcSurvey.Q10024_3.value) == "")
			msg = msg + "(Question II.) Customer Support Administrator, If data is entered for one field all fields must have data.\n"; 
	
	if (trim(document.PdcSurvey.Q10021_4.value) != "" || trim(document.PdcSurvey.Q10022_4.value) != "" || trim(document.PdcSurvey.Q10023_4.value) != "" || trim(document.PdcSurvey.Q10024_4.value) != "")
		if (trim(document.PdcSurvey.Q10021_4.value) == "" || trim(document.PdcSurvey.Q10022_4.value) == "" || trim(document.PdcSurvey.Q10023_4.value) == "" || trim(document.PdcSurvey.Q10024_4.value) == "")
			msg = msg + "(Question II.) Executive Administrative Assistant, If data is entered for one field all fields must have data.\n "; 
			
	if (trim(document.PdcSurvey.Q10021_5.value) != "" || trim(document.PdcSurvey.Q10022_5.value) != "" || trim(document.PdcSurvey.Q10023_5.value) != "" || trim(document.PdcSurvey.Q10024_5.value) != "")
		if (trim(document.PdcSurvey.Q10021_5.value) == "" || trim(document.PdcSurvey.Q10022_5.value) == "" || trim(document.PdcSurvey.Q10023_5.value) == "" || trim(document.PdcSurvey.Q10024_5.value) == "")
			msg = msg + "(Question II.) Facilities Specialist, If data is entered for one field all fields must have data.\n "; 
		
	if (trim(document.PdcSurvey.Q10021_6.value) != "" || trim(document.PdcSurvey.Q10022_6.value) != "" || trim(document.PdcSurvey.Q10023_6.value) != "" || trim(document.PdcSurvey.Q10024_6.value) != "")
		if (trim(document.PdcSurvey.Q10021_6.value) == "" || trim(document.PdcSurvey.Q10022_6.value) == "" || trim(document.PdcSurvey.Q10023_6.value) == "" || trim(document.PdcSurvey.Q10024_6.value) == "")
			msg = msg + "(Question II.) Logistics Representative, If data is entered for one field all fields must have data.\n "; 
		
	if (trim(document.PdcSurvey.Q10021_7.value) != "" || trim(document.PdcSurvey.Q10022_7.value) != "" || trim(document.PdcSurvey.Q10023_7.value) != "" || trim(document.PdcSurvey.Q10024_7.value) != "")
		if (trim(document.PdcSurvey.Q10021_7.value) == "" || trim(document.PdcSurvey.Q10022_7.value) == "" || trim(document.PdcSurvey.Q10023_7.value) == "" || trim(document.PdcSurvey.Q10024_7.value) == "")
			msg = msg + "(Question II.) Shipping and Receiving Clerk, If data is entered for one field all fields must have data.\n  "; 
		
	if (trim(document.PdcSurvey.Q10021_8.value) != "" || trim(document.PdcSurvey.Q10022_8.value) != "" || trim(document.PdcSurvey.Q10023_8.value) != "" || trim(document.PdcSurvey.Q10024_8.value) != "")
		if (trim(document.PdcSurvey.Q10021_8.value) == "" || trim(document.PdcSurvey.Q10022_8.value) == "" || trim(document.PdcSurvey.Q10023_8.value) == "" || trim(document.PdcSurvey.Q10024_8.value) == "")
			msg = msg + "(Question II.) Senior Staff Accountant, If data is entered for one field all fields must have data.\n "; 		
		
	//find object Q1002* which contains error input
	for (var i = 0; i < document.PdcSurvey.elements.length; i ++)
		if (document.PdcSurvey.elements(i).name.substring(0, 5) == "Q1002"){
			
			//convert a money value to a number first
			var sValue = inputMoney(document.PdcSurvey.elements(i).value);
			
			if (isNaN(sValue)){
				//build the specific message based on matrix,
				//include the horizontal label, look for the number after '_', such as Q10021_12, to get 12
				iPos = document.PdcSurvey.elements(i).name.indexOf("_")
				c7 = document.PdcSurvey.elements(i).name.substring(iPos + 1, document.PdcSurvey.elements(i).name.length);
				labelID = "Q1002_" + c7
				//include the column head
				c5 = document.PdcSurvey.elements(i).name.charAt(5)
				columnHead = "Q1002" + c5
				
				msg = msg + document.getElementById(labelID).innerText + "::"; 
				msg = msg + document.getElementById(columnHead).innerText + "\n";
			}
		}
			
	// to do code
	
	if (msg != ""){
		//msg = msg + "fields must be numberic.\n\n";
		
		alert(title + msg);
		//looking for the anchor in anchors array
		this.location.hash = document.getElementById("Q10021").id;
				
		return false;
	}
	else
		return true;
}
 
//Salary Survey
function jsSalary(){
 
	var msg, title;
	title = "III. Salary Survey\n\n";
	msg = "";
	
	if (trim(document.PdcSurvey.Q10031_1.value) != "" || trim(document.PdcSurvey.Q10032_1.value) != "" || trim(document.PdcSurvey.Q10033_1.value) != "" || trim(document.PdcSurvey.Q10034_1.value) != "")
		if (trim(document.PdcSurvey.Q10031_1.value) == "" || trim(document.PdcSurvey.Q10032_1.value) == "" || trim(document.PdcSurvey.Q10033_1.value) == "" || trim(document.PdcSurvey.Q10034_1.value) == "")
			msg = msg + "(Question III.) Accounting Manager, If data is entered for one field all fields must have data.\n"; 
			
	if (trim(document.PdcSurvey.Q10031_2.value) != "" || trim(document.PdcSurvey.Q10032_2.value) != "" || trim(document.PdcSurvey.Q10033_2.value) != "" || trim(document.PdcSurvey.Q10034_2.value) != "")
		if (trim(document.PdcSurvey.Q10031_2.value) == "" || trim(document.PdcSurvey.Q10032_2.value) == "" || trim(document.PdcSurvey.Q10033_2.value) == "" || trim(document.PdcSurvey.Q10034_2.value) == "")
			msg = msg + "(Question III.) Business Development Manager, If data is entered for one field all fields must have data.\n"; 
			
	if (trim(document.PdcSurvey.Q10031_3.value) != "" || trim(document.PdcSurvey.Q10032_3.value) != "" || trim(document.PdcSurvey.Q10033_3.value) != "" || trim(document.PdcSurvey.Q10034_3.value) != "")
		if (trim(document.PdcSurvey.Q10031_3.value) == "" || trim(document.PdcSurvey.Q10032_3.value) == "" || trim(document.PdcSurvey.Q10033_3.value) == "" || trim(document.PdcSurvey.Q10034_3.value) == "")
			msg = msg + "(Question III.) Customer Service Engineer II, If data is entered for one field all fields must have data.\n"; 
			
	if (trim(document.PdcSurvey.Q10031_4.value) != "" || trim(document.PdcSurvey.Q10032_4.value) != "" || trim(document.PdcSurvey.Q10033_4.value) != "" || trim(document.PdcSurvey.Q10034_4.value) != "")
		if (trim(document.PdcSurvey.Q10031_4.value) == "" || trim(document.PdcSurvey.Q10032_4.value) == "" || trim(document.PdcSurvey.Q10033_4.value) == "" || trim(document.PdcSurvey.Q10034_4.value) == "")
			msg = msg + "(Question III.) IT Manager, If data is entered for one field all fields must have data.\n "; 
			
	if (trim(document.PdcSurvey.Q10031_5.value) != "" || trim(document.PdcSurvey.Q10032_5.value) != "" || trim(document.PdcSurvey.Q10033_5.value) != "" || trim(document.PdcSurvey.Q10034_5.value) != "")
		if (trim(document.PdcSurvey.Q10031_5.value) == "" || trim(document.PdcSurvey.Q10032_5.value) == "" || trim(document.PdcSurvey.Q10033_5.value) == "" || trim(document.PdcSurvey.Q10034_5.value) == "")
			msg = msg + "(Question III.) Logistics Manager, If data is entered for one field all fields must have data.\n "; 
			
	if (trim(document.PdcSurvey.Q10031_6.value) != "" || trim(document.PdcSurvey.Q10032_6.value) != "" || trim(document.PdcSurvey.Q10033_6.value) != "" || trim(document.PdcSurvey.Q10034_6.value) != "")
		if (trim(document.PdcSurvey.Q10031_6.value) == "" || trim(document.PdcSurvey.Q10032_6.value) == "" || trim(document.PdcSurvey.Q10033_6.value) == "" || trim(document.PdcSurvey.Q10034_6.value) == "")
			msg = msg + "(Question III.) Manager Field Operation, If data is entered for one field all fields must have data.\n "; 
			
	if (trim(document.PdcSurvey.Q10031_7.value) != "" || trim(document.PdcSurvey.Q10032_7.value) != "" || trim(document.PdcSurvey.Q10033_7.value) != "" || trim(document.PdcSurvey.Q10034_7.value) != "")
		if (trim(document.PdcSurvey.Q10031_7.value) == "" || trim(document.PdcSurvey.Q10032_7.value) == "" || trim(document.PdcSurvey.Q10033_7.value) == "" || trim(document.PdcSurvey.Q10034_7.value) == "")
			msg = msg + "(Question III.) Manager Training, If data is entered for one field all fields must have data.\n  "; 
			
	if (trim(document.PdcSurvey.Q10031_8.value) != "" || trim(document.PdcSurvey.Q10032_8.value) != "" || trim(document.PdcSurvey.Q10033_8.value) != "" || trim(document.PdcSurvey.Q10034_8.value) != "")
		if (trim(document.PdcSurvey.Q10031_8.value) == "" || trim(document.PdcSurvey.Q10032_8.value) == "" || trim(document.PdcSurvey.Q10033_8.value) == "" || trim(document.PdcSurvey.Q10034_8.value) == "")
			msg = msg + "(Question III.) Multinational Accounts Manager, If data is entered for one field all fields must have data.\n "; 
			
	if (trim(document.PdcSurvey.Q10031_9.value) != "" || trim(document.PdcSurvey.Q10032_9.value) != "" || trim(document.PdcSurvey.Q10033_9.value) != "" || trim(document.PdcSurvey.Q10034_9.value) != "")
		if (trim(document.PdcSurvey.Q10031_9.value) == "" || trim(document.PdcSurvey.Q10032_9.value) == "" || trim(document.PdcSurvey.Q10033_9.value) == "" || trim(document.PdcSurvey.Q10034_9.value) == "")
			msg = msg + "(Question III.) Network Administrator, If data is entered for one field all fields must have data.\n "; 
			
	if (trim(document.PdcSurvey.Q10031_10.value) != "" || trim(document.PdcSurvey.Q10032_10.value) != "" || trim(document.PdcSurvey.Q10033_10.value) != "" || trim(document.PdcSurvey.Q10034_10.value) != "")
		if (trim(document.PdcSurvey.Q10031_10.value) == "" || trim(document.PdcSurvey.Q10032_10.value) == "" || trim(document.PdcSurvey.Q10033_10.value) == "" || trim(document.PdcSurvey.Q10034_10.value) == "")
			msg = msg + "(Question III.) Product Manager, If data is entered for one field all fields must have data.\n "; 
			
	if (trim(document.PdcSurvey.Q10031_11.value) != "" || trim(document.PdcSurvey.Q10032_11.value) != "" || trim(document.PdcSurvey.Q10033_11.value) != "" || trim(document.PdcSurvey.Q10034_11.value) != "")
		if (trim(document.PdcSurvey.Q10031_11.value) == "" || trim(document.PdcSurvey.Q10032_11.value) == "" || trim(document.PdcSurvey.Q10033_11.value) == "" || trim(document.PdcSurvey.Q10034_11.value) == "")
			msg = msg + "(Question III.) Project Manager, If data is entered for one field all fields must have data.\n "; 
			
	if (trim(document.PdcSurvey.Q10031_12.value) != "" || trim(document.PdcSurvey.Q10032_12.value) != "" || trim(document.PdcSurvey.Q10033_12.value) != "" || trim(document.PdcSurvey.Q10034_12.value) != "")
		if (trim(document.PdcSurvey.Q10031_12.value) == "" || trim(document.PdcSurvey.Q10032_12.value) == "" || trim(document.PdcSurvey.Q10033_12.value) == "" || trim(document.PdcSurvey.Q10034_12.value) == "")
			msg = msg + "(Question III.) Senior Customer Support Engineer, If data is entered for one field all fields must have data.\n "; 
			
	if (trim(document.PdcSurvey.Q10031_13.value) != "" || trim(document.PdcSurvey.Q10032_13.value) != "" || trim(document.PdcSurvey.Q10033_13.value) != "" || trim(document.PdcSurvey.Q10034_13.value) != "")
		if (trim(document.PdcSurvey.Q10031_13.value) == "" || trim(document.PdcSurvey.Q10032_13.value) == "" || trim(document.PdcSurvey.Q10033_13.value) == "" || trim(document.PdcSurvey.Q10034_13.value) == "")
			msg = msg + "(Question III.) Senior Customer Support Engineer II, If data is entered for one field all fields must have data.\n "; 
		
	//find object Q1003* which contains error input
	for (var i = 0; i < document.PdcSurvey.elements.length; i ++)
		if (document.PdcSurvey.elements(i).name.substring(0, 5) == "Q1003"){
		
			//convert a money value to a number first
			var sValue = inputMoney(document.PdcSurvey.elements(i).value);
			
			if (isNaN(sValue)){
				//build the specific message based on matrix,
				//include the horizontal label, look for the number after '_', such as Q10031_12, to get 12
				iPos = document.PdcSurvey.elements(i).name.indexOf("_")
				c7 = document.PdcSurvey.elements(i).name.substring(iPos + 1, document.PdcSurvey.elements(i).name.length);
				labelID = "Q1003_" + c7
				//include the column head
				c5 = document.PdcSurvey.elements(i).name.charAt(5)
				columnHead = "Q1003" + c5
				
				msg = msg + document.getElementById(labelID).innerText + "::"; 
				msg = msg + document.getElementById(columnHead).innerText + "\n";
			}
		}
			
	// to do code
	
	if (msg != ""){
		//msg = msg + "fields must be numberic.";
		
		alert(title + msg);
		//looking for the anchor in anchors array
		this.location.hash = document.getElementById("Q10031").id;
				
		return false;
	}
	else
		return true;
}
 
//Sales Compensation Survey
function jsSalesSurvey(){
 
	var msg, title;
	title = "IV. Sales Compensation Survey\n\n";
	msg = "";
	
	if (trim(document.PdcSurvey.Q10042_1.value) != "" || trim(document.PdcSurvey.Q10043_1.value) != "" || trim(document.PdcSurvey.Q10044_1.value) != "")
		if (trim(document.PdcSurvey.Q10042_1.value) == "" || trim(document.PdcSurvey.Q10043_1.value) == "" || trim(document.PdcSurvey.Q10044_1.value) == "")
			msg = msg + "(Question IV. Regional Sales Manager)  Base Salary, If data is entered for one field all fields must have data.\n"; 
	if (trim(document.PdcSurvey.Q10042_2.value) != "" || trim(document.PdcSurvey.Q10043_2.value) != "" || trim(document.PdcSurvey.Q10044_2.value) != "") 
		if (trim(document.PdcSurvey.Q10042_2.value) == "" || trim(document.PdcSurvey.Q10043_2.value) == "" || trim(document.PdcSurvey.Q10044_2.value) == "") 
			msg = msg + "(Question IV. Regional Sales Manager) Bonus, If data is entered for one field all fields must have data.\n"; 
	if (trim(document.PdcSurvey.Q10042_3.value) != "" || trim(document.PdcSurvey.Q10043_3.value) != "" || trim(document.PdcSurvey.Q10044_3.value) != "") 
		if (trim(document.PdcSurvey.Q10042_3.value) == "" || trim(document.PdcSurvey.Q10043_3.value) == "" || trim(document.PdcSurvey.Q10044_3.value) == "") 
			msg = msg + "(Question IV. Regional Sales Manager) Commission, If data is entered for one field all fields must have data.\n"; 
 
	if (trim(document.PdcSurvey.Q10042_5.value) != "" || trim(document.PdcSurvey.Q10043_5.value) != "" || trim(document.PdcSurvey.Q10044_5.value) != "")
		if (trim(document.PdcSurvey.Q10042_5.value) == "" || trim(document.PdcSurvey.Q10043_5.value) == "" || trim(document.PdcSurvey.Q10044_5.value) == "")
			msg = msg + "(Question IV. Sales Administrator)  Base Salary, If data is entered for one field all fields must have data.\n "; 
	if (trim(document.PdcSurvey.Q10042_6.value) != "" || trim(document.PdcSurvey.Q10043_6.value) != "" || trim(document.PdcSurvey.Q10044_6.value) != "")
		if (trim(document.PdcSurvey.Q10042_6.value) == "" || trim(document.PdcSurvey.Q10043_6.value) == "" || trim(document.PdcSurvey.Q10044_6.value) == "")
			msg = msg + "(Question IV. Sales Administrator)  Bonus, If data is entered for one field all fields must have data.\n "; 
	if (trim(document.PdcSurvey.Q10042_7.value) != "" || trim(document.PdcSurvey.Q10043_7.value) != "" || trim(document.PdcSurvey.Q10044_7.value) != "")
		if (trim(document.PdcSurvey.Q10042_7.value) == "" || trim(document.PdcSurvey.Q10043_7.value) == "" || trim(document.PdcSurvey.Q10044_7.value) == "")
			msg = msg + "(Question IV. Sales Administrator) Commission, If data is entered for one field all fields must have data.\n "; 
	
	if (trim(document.PdcSurvey.Q10042_9.value) != "" || trim(document.PdcSurvey.Q10043_9.value) != "" || trim(document.PdcSurvey.Q10044_9.value) != "")
		if (trim(document.PdcSurvey.Q10042_9.value) == "" || trim(document.PdcSurvey.Q10043_9.value) == "" || trim(document.PdcSurvey.Q10044_9.value) == "")
			msg = msg + "(Question IV. Senior Sales Administrator) Base Salary, If data is entered for one field all fields must have data.\n "; 
	
	if (trim(document.PdcSurvey.Q10042_10.value) != "" || trim(document.PdcSurvey.Q10043_10.value) != "" || trim(document.PdcSurvey.Q10044_10.value) != "")
		if (trim(document.PdcSurvey.Q10042_10.value) == "" || trim(document.PdcSurvey.Q10043_10.value) == "" || trim(document.PdcSurvey.Q10044_10.value) == "")
			msg = msg + "(Question IV. Senior Sales Administrator) Bonus, If data is entered for one field all fields must have data.\n "; 
	
	if (trim(document.PdcSurvey.Q10042_11.value) != "" || trim(document.PdcSurvey.Q10043_11.value) != "" || trim(document.PdcSurvey.Q10044_11.value) != "")
		if (trim(document.PdcSurvey.Q10042_11.value) == "" || trim(document.PdcSurvey.Q10043_11.value) == "" || trim(document.PdcSurvey.Q10044_11.value) == "")
			msg = msg + "(Question IV. Senior Sales Administrator) Commission, If data is entered for one field all fields must have data.\n "; 
 
	if (trim(document.PdcSurvey.Q10042_13.value) != "" || trim(document.PdcSurvey.Q10043_13.value) != "" || trim(document.PdcSurvey.Q10044_13.value) != "")
		if (trim(document.PdcSurvey.Q10042_13.value) == "" || trim(document.PdcSurvey.Q10043_13.value) == "" || trim(document.PdcSurvey.Q10044_13.value) == "")
			msg = msg + "(Question IV. Senior Sales Representative) Base Salary, If data is entered for one field all fields must have data.\n ";
			
	if (trim(document.PdcSurvey.Q10042_14.value) != "" || trim(document.PdcSurvey.Q10043_14.value) != "" || trim(document.PdcSurvey.Q10044_14.value) != "")
		if (trim(document.PdcSurvey.Q10042_14.value) == "" || trim(document.PdcSurvey.Q10043_14.value) == "" || trim(document.PdcSurvey.Q10044_14.value) == "")
			msg = msg + "(Question IV. Senior Sales Representative) Bonus, If data is entered for one field all fields must have data.\n ";
			
	if (trim(document.PdcSurvey.Q10042_15.value) != "" || trim(document.PdcSurvey.Q10043_15.value) != "" || trim(document.PdcSurvey.Q10044_15.value) != "")
		if (trim(document.PdcSurvey.Q10042_15.value) == "" || trim(document.PdcSurvey.Q10043_15.value) == "" || trim(document.PdcSurvey.Q10044_15.value) == "")
			msg = msg + "(Question IV. Senior Sales Representative) Commission, If data is entered for one field all fields must have data.\n "; 
 
	//find object Q1004* which contains error input
	for (var i = 0; i < document.PdcSurvey.elements.length; i ++)
		if (document.PdcSurvey.elements(i).name.substring(0, 5) == "Q1004"){
		
			//convert a money value to a number first
			var sValue = inputMoney(document.PdcSurvey.elements(i).value);
			
			if (isNaN(sValue)){
				//build the specific message based on matrix,
				//include the horizontal label, look for the number after '_', such as Q10041_12, to get 12
				iPos = document.PdcSurvey.elements(i).name.indexOf("_")
				c7 = document.PdcSurvey.elements(i).name.substring(iPos + 1, document.PdcSurvey.elements(i).name.length);
				labelID = "Q1004_" + c7
				//include the column head
				c5 = document.PdcSurvey.elements(i).name.charAt(5)
				columnHead = "Q1004" + c5
				
				msg = msg + document.getElementById(labelID).innerText + "::"; 
				msg = msg + document.getElementById(columnHead).innerText + "\n";
			}
		}
	// to do code
	
	if (msg != ""){
		//msg = msg + "fields must be numberic.";
		
		alert(title + msg);
		//looking for the anchor in anchors array
		this.location.hash = document.getElementById("Q1004").id;
				
		return false;
	}
	else
		return true;
}
 
//Demographics
function jsDemo(){
 
	var msg, title;
	var i;
	var bChecked;
	title = "V. Demographics\n\n";
	msg = "";
	
	// Build the msg
	// radio Q10051
	bChecked = false;
	for (i = 0; i < document.PdcSurvey.Q10051.length; i++)
		if (document.PdcSurvey.Q10051[i].checked){
			bChecked = true;
			break;
		}
	if (!bChecked)
		msg = msg + "(Question V.1) Please 'Indicate your total sales revenue for your most recent fiscal year.'\n";
		
	if (trim(document.PdcSurvey.Q10052_1.value) == "")
		msg = msg + "(Question V.2) Please enter 'Total number of Salaried employees.'\n";
	if (trim(document.PdcSurvey.Q10052_2.value) == "")
		msg = msg + "(Question V.2) Please enter 'Total number of Hourly employees.'\n";
	if (trim(document.PdcSurvey.Q10053_1.value) == "")
		msg = msg + "(Question V.3) Please enter 'Total number of US and Canadian facilities.'\n";
		
	// radio Q10054
	bChecked = false;
	for (i = 0; i < document.PdcSurvey.Q10054.length; i++)
		if (document.PdcSurvey.Q10054[i].checked){
			bChecked = true;
			break;
		}
	if (!bChecked)
		msg = msg + "(Question V.4) Please 'Indicate the region in which all or most of your facilities are located.'\n";
	
	// radio Q10055	
	bChecked = false;
	for (i = 0; i < document.PdcSurvey.Q10055.length; i++)
		if (document.PdcSurvey.Q10055[i].checked){
			bChecked = true;
			break;
		}
	if (!bChecked)
		msg = msg + "(Question V.5) 'Are all, part or none of your production and/or maintenance employees unionized.'\n";
		
	if (trim(document.PdcSurvey.Q10056_1.value) == "")
		msg = msg + "(Question V.6) Please enter 'Projected average organizational salary budget increase for 2005 for Salaried positions.'\n";
	if (trim(document.PdcSurvey.Q10056_2.value) == "")
		msg = msg + "(Question V.6) Please enter 'Projected average organizational salary budget increase for 2005 for Management positions.'\n";
	if (trim(document.PdcSurvey.Q10056_3.value) == "")
		msg = msg + "(Question V.6) Please enter 'Projected average organizational salary budget increase for 2005 for Hourly position.'\n";
	if (trim(document.PdcSurvey.Q10057_1.value) == "")
		msg = msg + "(Question V.7) Please enter 'Report the dollars paid for benefits in 2004...'\n";
		
	// to do code
	
	if (msg != ""){
		alert(title + msg);
		//looking for the anchor in anchors array
		this.location.hash = document.getElementById("Q1005").id;
				
		return false;
	}
	else
		return true;
}
 
//Personnel & Compensation Policies
function jsPersonnel(){
 
	var msg, title;
	var i;
	var bChecked;
	var bRelay5;
	var bRelay9;
	var bRelay17;
	title = "VI. Personnel & Compensation Policies\n\n";
	msg = "";
	
	// Build the msg
	// Radio Q100601
	bChecked = false;
	for (i = 0; i < document.PdcSurvey.Q100601.length; i++)
		if (document.PdcSurvey.Q100601[i].checked){
			bChecked = true;
			break;
		}
	if (!bChecked)
		msg = msg + "(Question VI.1) Please choose 'How is overtime handled for salaried employees?'\n";
		
	// Radio Q100602
	bChecked = false;
	for (i = 0; i < document.PdcSurvey.Q100602.length; i++)
		if (document.PdcSurvey.Q100602[i].checked){
			bChecked = true;
			break;
		}
	if (!bChecked)
		msg = msg + "(Question VI.2) Please choose 'Do you have a flexible hour program?'\n";
		
	// Radio Q100603
	bChecked = false;
	for (i = 0; i < document.PdcSurvey.Q100603.length; i++)
		if (document.PdcSurvey.Q100603[i].checked){
			bChecked = true;
			break;
		}
	if (!bChecked)
		msg = msg + "(Question VI.3) Please choose 'What is your normal probationary period for new employee?'\n";
		
	// Radio Q100604
	bChecked = false;
	for (i = 0; i < document.PdcSurvey.Q100604.length; i++)
		if (document.PdcSurvey.Q100604[i].checked){
			bChecked = true;
			break;
		}
	if (!bChecked)
		msg = msg + "(Question VI.4) Please choose 'What is the reason for requireing pre-employment...?'\n";
		
	// Radio Q100605
	bChecked = false;
	for (i = 0; i < document.PdcSurvey.Q100605.length; i++)
		if (document.PdcSurvey.Q100605[i].checked){
			bChecked = true;
			
			// if user chooses Q100605_1, or Q100605_2, then question 6 is required
			bRelay5 = false;
			if (document.PdcSurvey.Q100605[i].value == "1" || document.PdcSurvey.Q100605[i].value == "2")
				bRelay5 = true;
			
			break;
		}
	if (!bChecked)
		msg = msg + "(Question VI.5) Please choose 'What is the reason for conducting drug test?'\n";
		
	// Checkbox Q100606
	if (bRelay5){
		bChecked = false;
		if (document.PdcSurvey.Q100606_1.checked ||
			document.PdcSurvey.Q100606_2.checked ||
			document.PdcSurvey.Q100606_3.checked)
			bChecked = true;
			
		if (!bChecked)
			msg = msg + "(Question VI.6) Please choose 'When are drug tests conducted?'\n";
	}
	
	// Radio Q100607
	bChecked = false;
	for (i = 0; i < document.PdcSurvey.Q100607.length; i++)
		if (document.PdcSurvey.Q100607[i].checked){
			bChecked = true;
			break;
		}
	if (!bChecked)
		msg = msg + "(Question VI.7) Please choose 'Do you conduct pre-employment security tests/background....?'\n";
		
		
	// Checkbox Q100608
	bChecked = false;
	if(document.PdcSurvey.Q100608_1.checked ||
		document.PdcSurvey.Q100608_2.checked ||
		document.PdcSurvey.Q100608_3.checked ||
		document.PdcSurvey.Q100608_4.checked ||
		document.PdcSurvey.Q100608_5.checked ||
		document.PdcSurvey.Q100608_6.checked)
		bChecked = true;
		
	if (!bChecked)
		msg = msg + "(Question VI.8) Please choose 'What types of base salary increases are granted to employees?'\n";
		
	// Radio Q100609
	bChecked = false;
	for (i = 0; i < document.PdcSurvey.Q100609.length; i++)
		if (document.PdcSurvey.Q100609[i].checked){
			bChecked = true;
			
			// if user chooses a-f then question 10, 11 are required
			bRelay9 = false;
			if (document.PdcSurvey.Q100609[i].value != "7")
				bRelay9 = true;
				
			break;
		}
	if (!bChecked)
		msg = msg + "(Question VI.9) Please choose 'What type of performance appraisal plan do you use?'\n";
		
	// Radio Q100610
	if (bRelay9){
		bChecked = false;
		for (i = 0; i < document.PdcSurvey.Q100610.length; i++)
			if (document.PdcSurvey.Q100610[i].checked){
				bChecked = true;
				break;
			}
		if (!bChecked)
			msg = msg + "(Question VI.10) Please choose 'What is your benchmark date for conducting performance....?'\n";
	}
	
	// Radio Q100611
	if (bRelay9){
		bChecked = false;
		for (i = 0; i < document.PdcSurvey.Q100611.length; i++)
			if (document.PdcSurvey.Q100611[i].checked){
				bChecked = true;
				break;
			}
		if (!bChecked)
			msg = msg + "(Question VI.11) Please choose 'How frequently do you conduct performance appraisals?'\n";
	}
		
	// Radio Q100612
	bChecked = false;
	for (i = 0; i < document.PdcSurvey.Q100612.length; i++)
		if (document.PdcSurvey.Q100612[i].checked){
			bChecked = true;
			break;
		}
	if (!bChecked)
		msg = msg + "(Question VI.12) Please choose 'How frequently are employees eligible for salary increases?'\n";
		
	// Q1006151
	if (!document.PdcSurvey.Q1006151_1.checked){
		//1 out of 9 fields has to be filled.
		if (trim(PdcSurvey.Q1006152_1.value) == "" &&
			trim(PdcSurvey.Q1006153_1.value) == "" &&
			trim(PdcSurvey.Q1006154_1.value) == "" &&
			trim(PdcSurvey.Q1006152_2.value) == "" &&
			trim(PdcSurvey.Q1006153_2.value) == "" &&
			trim(PdcSurvey.Q1006154_2.value) == "" &&
			trim(PdcSurvey.Q1006152_3.value) == "" &&
			trim(PdcSurvey.Q1006153_3.value) == "" &&
			trim(PdcSurvey.Q1006154_3.value) == "")
			msg = msg + "(Question VI.18) Please enter 'Indicate the premium paid to production/maintenance...'\n";
	}
	
	// Radio Q100616
	bChecked = false;
	for (i = 0; i < document.PdcSurvey.Q100616.length; i++)
		if (document.PdcSurvey.Q100616[i].checked){
			bChecked = true;
			break;
		}
	if (!bChecked)
		msg = msg + "(Question VI.19) Please choose 'Do you pay any employees reported in the hourly job...?'\n";
		
	// Radio Q100617
	bChecked = false;
	for (i = 0; i < document.PdcSurvey.Q100617.length; i++)
		if (document.PdcSurvey.Q100617[i].checked){
			bChecked = true;
			
			// if user chooses Q100617_1, then question 18, 19 are required
			bRelay17 = false;
			if (document.PdcSurvey.Q100617[i].value == "1")
				bRelay17 = true;
			break;
		}
	if (!bChecked)
		msg = msg + "(Question VI.20) Please choose 'Is your workforce team based?'\n";
		
	// Q100618
	if (bRelay17)
		if (trim(document.PdcSurvey.Q100618.value) == "")
			msg = msg + "(Question VI.21) Please enter 'What percentage of your workforce is working on teams.'\n";
			
	// Radio Q100619
	if (bRelay17){
		bChecked = false;
		for (i = 0; i < document.PdcSurvey.Q100619.length; i++)
			if (document.PdcSurvey.Q100619[i].checked){
				bChecked = true;
				break;
			}
		if (!bChecked)
			msg = msg + "(Question VI.22) Please choose 'Is there a bonus for working on teams?'\n";
	}
		
	// Radio Q100620
	if (bRelay17){
		bChecked = false;
		for (i = 0; i < document.PdcSurvey.Q100620.length; i++)
			if (document.PdcSurvey.Q100620[i].checked){
				bChecked = true;
				break;
			}
		if (!bChecked)
			msg = msg + "(Question VI.23) Please choose 'Are there cash or other incentives for working on teams?'\n";
	}
	// to do code
	
	if (msg != ""){
		alert(title + msg);
		//looking for the anchor in anchors array
		this.location.hash = document.getElementById("Q1006").id;
				
		return false;
	}
	else
		return true;
}
 
//Benefits and Other Compensation
function jsBenefits(){
 
	//because 'Benefits and Other Compensation' is too long, we go section by section.
	if (!jsRetirement())
		return false;
	else if (!jsLifeInsurance())
		return false;
	else if (!jsMedicalInsurance())
		return false;
	else if (!jsLeavePolicies())
		return false;
	else
		return true;
}
 
//Benefits and Other Compensation - Retirement Benefits
function jsRetirement(){
 
	var msg, title;
	var i;
	var bChecked;
	var bRelay1;
	title = "VII. Benefits and Other Compensation\n\n";
	title = title + "Retirement Benefits\n\n";
	msg = "";
	
	//Build the msg
	//Checkbox Q1007011
	bRelay1 = false;
	if(document.PdcSurvey.Q1007011_1.checked ||
		document.PdcSurvey.Q1007012_1.checked ||
		document.PdcSurvey.Q1007013_1.checked)
		bRelay1 = true;
		
	//if any of 'Defined Benefit Plan' is checked, all question in 2 have to be answered
	if (bRelay1){
		//textbox Q1007021
		if (trim(document.PdcSurvey.Q1007021.value) == "")
			msg = msg + "(Question VII.2.a) Please enter 'What percent of your plan is funded?'\n";
		
		//Radio Q1007022
		bChecked = false;
		for (i = 0; i < document.PdcSurvey.Q1007022.length; i++)
			if (document.PdcSurvey.Q1007022[i].checked){
				bChecked = true;
				break;
			}
		if (!bChecked)
			msg = msg + "(Question VII.2.b) Please choose 'What types of base salary increases are granted to employees?'\n";
			
		//Radio Q1007023
		bChecked = false;
		for (i = 0; i < document.PdcSurvey.Q1007023.length; i++)
			if (document.PdcSurvey.Q1007023[i].checked){
				bChecked = true;
				break;
			}
		if (!bChecked)
			msg = msg + "(Question VII.2.c) Please choose 'May employees make additional voluntary contributions to the plan?'\n";	
	}
	
	// to do code
	
	if (msg != ""){
		alert(title + msg);
		//looking for the anchor in anchors array
		this.location.hash = document.getElementById("Q1007_Sect1").id;
				
		return false;
	}
	else
		return true;
}
 
//Benefits and Other Compensation - Life Insuarance
function jsLifeInsurance(){
 
	var msg, title;
	var i;
	var bChecked;
	var bRelay4;
	title = "VII. Benefits and Other Compensation\n\n";
	title = title + "Life Insurance\n\n";
	msg = "";
	
	//Build the msg
	//Radio Q100704
	bChecked = false;
	for (i = 0; i < document.PdcSurvey.Q100704.length; i++)
		if (document.PdcSurvey.Q100704[i].checked){
			bChecked = true;
			
			//if user does not choose the first one, question 5, 6, 7 have to be answered.
			bRelay4 = false;
			if (document.PdcSurvey.Q100704[i].value != "1")
				bRelay4 = true;
				
			break;
		}
	if (!bChecked)
		msg = msg + "(Question VII.4) Please choose 'When do your employees become eligible for life insurance coverage?'\n";
		
	if (bRelay4){
		//Radio Q100705
		bChecked = false;
		for (i = 0; i < document.PdcSurvey.Q100705.length; i++)
			if (document.PdcSurvey.Q100705[i].checked){
				bChecked = true;
				break;
			}
		if (!bChecked)
			msg = msg + "(Question VII.5) Please choose 'What percentage of the premium for life insurance is paid by the organization?'\n";	
			
		//Checkbox Q100706
		bChecked = false;
		if(document.PdcSurvey.Q100706_1.checked ||
			document.PdcSurvey.Q100706_2.checked ||
			document.PdcSurvey.Q100706_3.checked)
			bChecked = true;
			
		if (!bChecked)
			msg = msg + "(Question VII.6) Please choose 'Which of the following are covered by the life insurance program?'\n";	
		
		//Radio Q100707
		bChecked = false;
		for (i = 0; i < document.PdcSurvey.Q100707.length; i++)
			if (document.PdcSurvey.Q100707[i].checked){
				bChecked = true;
				break;
			}
		if (!bChecked)
			msg = msg + "(Question VII.7) Please choose 'Do you offer supplemental life insurance?'\n";	
	}
	// to do code
	
	if (msg != ""){
		alert(title + msg);
		//looking for the anchor in anchors array
		this.location.hash = document.getElementById("Q1007_Sect2").id;
				
		return false;
	}
	else
		return true;
}
 
//Benefits and Other Compendation - Medical Insurance
function jsMedicalInsurance(){
 
	var msg, title;
	var i;
	var bChecked;
	title = "VII. Benefits and Other Compensation\n\n";
	title = title + "Medical Insurance\n\n";
	msg = "";
	
	//Build the msg
	//Radio Q100708
	bChecked = false;
	for (i = 0; i < document.PdcSurvey.Q100708.length; i++)
		if (document.PdcSurvey.Q100708[i].checked){
			bChecked = true;
			break;
		}
	if (!bChecked)
		msg = msg + "(Question VII.8) Please choose 'When do your employees become eligible for medical insurance coverage?'\n";
		
	//9. user doesn't have to select the checkboxes, however, if checked, the Premium Paid has to be answered.
	//Checkbox Q1007091
	bChecked = false;
	if(document.PdcSurvey.Q1007091_1.checked ||
		document.PdcSurvey.Q1007092_1.checked)
		bChecked = true;
		
	if (bChecked && trim(document.PdcSurvey.Q1007093_1.value) == "")
		msg = msg + "(Question VII.9) Please enter 'Premium Paid' for 'Basic Hospitalization/Surgical'\n";
		
	//Checkbox Q1007092
	bChecked = false;
	if(document.PdcSurvey.Q1007091_2.checked ||
		document.PdcSurvey.Q1007092_2.checked)
		bChecked = true;
		
	if (bChecked && trim(document.PdcSurvey.Q1007093_2.value) == "")
		msg = msg + "(Question VII.9) Please enter 'Premium Paid' for 'Major Medical'\n";
		
	//Checkbox Q1007093
	bChecked = false;
	if(document.PdcSurvey.Q1007091_3.checked ||
		document.PdcSurvey.Q1007092_3.checked)
		bChecked = true;
		
	if (bChecked && trim(document.PdcSurvey.Q1007093_3.value) == "")
		msg = msg + "(Question VII.9) Please enter 'Premium Paid' for 'HMO (Health Management Organization'\n";
		
	//Checkbox Q1007094
	bChecked = false;
	if(document.PdcSurvey.Q1007091_4.checked ||
		document.PdcSurvey.Q1007092_4.checked)
		bChecked = true;
		
	if (bChecked && trim(document.PdcSurvey.Q1007093_4.value) == "")
		msg = msg + "(Question VII.9) Please enter 'Premium Paid' for 'PPO (Paid Provider Organization'\n";
		
	//Checkbox Q1007095
	bChecked = false;
	if(document.PdcSurvey.Q1007091_5.checked ||
		document.PdcSurvey.Q1007092_5.checked)
		bChecked = true;
		
	if (bChecked && trim(document.PdcSurvey.Q1007093_5.value) == "")
		msg = msg + "(Question VII.9) Please enter 'Premium Paid' for 'Direct medical expense payments'\n";
		
	//Checkbox Q1007096
	bChecked = false;
	if(document.PdcSurvey.Q1007091_6.checked ||
		document.PdcSurvey.Q1007092_6.checked)
		bChecked = true;
		
	if (bChecked && trim(document.PdcSurvey.Q1007093_6.value) == "")
		msg = msg + "(Question VII.9) Please enter 'Premium Paid' for 'Health Savings Account (HSA)'\n";
		
	//Checkbox Q1007097
	bChecked = false;
	if(document.PdcSurvey.Q1007091_7.checked ||
		document.PdcSurvey.Q1007092_7.checked)
		bChecked = true;
		
	if (bChecked && trim(document.PdcSurvey.Q1007093_7.value) == "")
		msg = msg + "(Question VII.9) Please enter 'Premium Paid' for 'Dental'\n";
		
	//Checkbox Q1007098
	bChecked = false;
	if(document.PdcSurvey.Q1007091_8.checked ||
		document.PdcSurvey.Q1007092_8.checked)
		bChecked = true;
		
	if (bChecked && trim(document.PdcSurvey.Q1007093_8.value) == "")
		msg = msg + "(Question VII.9) Please enter 'Premium Paid' for 'Optical (routine eye exams, eyeglasses, etc.)'\n";
		
	//Checkbox Q1007099
	bChecked = false;
	if(document.PdcSurvey.Q1007091_9.checked ||
		document.PdcSurvey.Q1007092_9.checked)
		bChecked = true;
		
	if (bChecked && trim(document.PdcSurvey.Q1007093_9.value) == "")
		msg = msg + "(Question VII.9) Please enter 'Premium Paid' for 'Short-term disability'\n";
		
	//Checkbox Q10070910
	bChecked = false;
	if(document.PdcSurvey.Q1007091_10.checked ||
		document.PdcSurvey.Q1007092_10.checked)
		bChecked = true;
		
	if (bChecked && trim(document.PdcSurvey.Q1007093_10.value) == "")
		msg = msg + "(Question VII.9) Please enter 'Premium Paid' for 'Long-term disability'\n";
		
	//Checkbox Q10070911
	bChecked = false;
	if(document.PdcSurvey.Q1007091_11.checked ||
		document.PdcSurvey.Q1007092_11.checked)
		bChecked = true;
		
	if (bChecked && trim(document.PdcSurvey.Q1007093_11.value) == "")
		msg = msg + "(Question VII.9) Please enter 'Premium Paid' for '*Flexible Spending Account (Sec 125 Plan)'\n";
		
	//Checkbox Q10070912
	bChecked = false;
	if(document.PdcSurvey.Q1007091_12.checked ||
		document.PdcSurvey.Q1007092_12.checked)
		bChecked = true;
		
	if (bChecked && trim(document.PdcSurvey.Q1007093_12.value) == "")
		msg = msg + "(Question VII.9) Please enter 'Premium Paid' for '**Premium Only Plan (Sec 125 Plan)'\n";
	
	// to do code
	
	if (msg != ""){
		alert(title + msg);
		//looking for the anchor in anchors array
		this.location.hash = document.getElementById("Q1007_Sect3").id;
				
		return false;
	}
	else
		return true;
}
 
//Benefits and other Compensation - Leave Policies
function jsLeavePolicies(){
 
	var msg, title;
	var i;
	var bChecked;
	title = "VII. Benefits and Other Compensation\n\n";
	title = title + "Leave Policies\n\n";
	msg = "";
	
	//Build the msg
	if (trim(document.PdcSurvey.Q100710_1.value) == "")
		msg = msg + "(Question VII.10) Please enter 'Paid holidays.'\n";
	if (trim(document.PdcSurvey.Q100710_2.value) == "")
		msg = msg + "(Question VII.10) Please enter 'Floating holidays.'\n";
	if (trim(document.PdcSurvey.Q100710_3.value) == "")
		msg = msg + "(Question VII.10) Please enter 'Paid personal days.'\n";
		
	//Checkbox Q100711
	bChecked = false;
	if(document.PdcSurvey.Q100711_1.checked ||
		document.PdcSurvey.Q100711_2.checked ||
		document.PdcSurvey.Q100711_3.checked ||
		document.PdcSurvey.Q100711_4.checked)
		bChecked = true;
		
	if (!bChecked)
		msg = msg + "(Question VII.11) Please choose 'Which of the following does your company offer to employees?'\n";	
	
	//to hold the PTO value, if it is checked by the user
	var bPTO = false;
	if (document.PdcSurvey.Q100711_1.checked)
		bPTO = true;
	
	//if choose PTO, question 12 a, b, c, d have to be answered
	if (bPTO){
		//Checkbox Q1007121
		bChecked = false;
		if(document.PdcSurvey.Q1007121_1.checked ||
			document.PdcSurvey.Q1007121_2.checked ||
			document.PdcSurvey.Q1007121_3.checked ||
			document.PdcSurvey.Q1007121_4.checked)
			bChecked = true;
			
		if (!bChecked)
			msg = msg + "(Question VII.12.a) Please choose 'For what purposes may employees use PTO time?'\n";
			
		if (trim(document.PdcSurvey.Q10071221_1.value) == "" ||
			trim(document.PdcSurvey.Q10071221_2.value) == "" ||
			trim(document.PdcSurvey.Q10071221_3.value) == "" ||
			trim(document.PdcSurvey.Q10071222_1.value) == "" ||
			trim(document.PdcSurvey.Q10071222_2.value) == "" ||
			trim(document.PdcSurvey.Q10071222_3.value) == "" ||
			trim(document.PdcSurvey.Q10071223_1.value) == "" ||
			trim(document.PdcSurvey.Q10071223_2.value) == "" ||
			trim(document.PdcSurvey.Q10071223_3.value) == "" ||
			trim(document.PdcSurvey.Q10071224_1.value) == "" ||
			trim(document.PdcSurvey.Q10071224_2.value) == "" ||
			trim(document.PdcSurvey.Q10071224_3.value) == "")
			
			msg = msg + "(Question VII.12.b) Please enter 'Indicate the number of PTO days earned for the years of service...'\n";
	
		//Radio Q1007123
		bChecked = false;
		for (i = 0; i < document.PdcSurvey.Q1007123.length; i++)
			if (document.PdcSurvey.Q1007123[i].checked){
				bChecked = true;
				break;
			}
		if (!bChecked)
			msg = msg + "(Question VII.12.c) Please choose 'Is PTO time accrued or granted in a block at the beginning of the year?'\n";
			
		//Checkbox Q10071241
		bChecked = false;
		if(document.PdcSurvey.Q10071241_1.checked ||
			document.PdcSurvey.Q10071241_2.checked ||
			document.PdcSurvey.Q10071241_3.checked)
			bChecked = true;
			
		if (!bChecked)
			msg = msg + "(Question VII.12.d) Please choose 'Unused PTO time is'\n";
	}
	
	//15. Tuition Reimbursement
	//Radio Q1007151
	bChecked = false;
	for (i = 0; i < document.PdcSurvey.Q1007151.length; i++)
		if (document.PdcSurvey.Q1007151[i].checked){
			bChecked = true;
			break;
		}
	if (!bChecked)
		msg = msg + "(Question VII.15.a) Please choose 'For which continuing education related expenses...'\n";
		
	//to hold the Tuition Reimbursement value, if it is checked by the user
	var bTuitReim = false;
	for (i = 0; i < document.PdcSurvey.Q1007151.length; i++){
		if (document.PdcSurvey.Q1007151[i].checked && document.PdcSurvey.Q1007151[i].value != "4")
			bTuitReim = true;
	}
	
	if (bTuitReim){
		//question b.
		if (trim(document.PdcSurvey.Q1007152_1.value) == "")
			msg = msg + "(Question VII.15.b) Please enter 'What is the dollar cap...' for 'Hourly employees'\n";
		if (trim(document.PdcSurvey.Q1007152_2.value) == "")
			msg = msg + "(Question VII.15.b) Please enter 'What is the dollar cap...' for 'Salaried employees'\n";
		if (trim(document.PdcSurvey.Q1007152_3.value) == "")
			msg = msg + "(Question VII.15.b) Please enter 'What is the dollar cap...' for 'Management'\n";
			
		//Radio Q1007153
		bChecked = false;
		for (i = 0; i < document.PdcSurvey.Q1007153.length; i++)
			if (document.PdcSurvey.Q1007153[i].checked){
				bChecked = true;
				break;
			}
		if (!bChecked)
			msg = msg + "(Question VII.15.c) Please choose 'When is reimbursement paid?'\n";
			
		//Radio Q1007154
		bChecked = false;
		for (i = 0; i < document.PdcSurvey.Q1007154.length; i++)
			if (document.PdcSurvey.Q1007154[i].checked){
				bChecked = true;
				break;
			}
		if (!bChecked)
			msg = msg + "(Question VII.15.d) Please choose 'What grade, if any, is required for reimbursement?'\n";
			
		//Radio Q10071551
		bChecked = false;
		for (i = 0; i < document.PdcSurvey.Q10071551.length; i++)
			if (document.PdcSurvey.Q10071551[i].checked){
				bChecked = true;
				break;
			}
		if (!bChecked)
			msg = msg + "(Question VII.15.e) Please choose 'Do you require employees who apply for tuition...'\n";
			
		//to hold the 'sign a continuing employment..' value, if it is checked by the user
		var bSign = false;
		for (i = 0; i < document.PdcSurvey.Q10071551.length; i++){
			if (document.PdcSurvey.Q10071551[i].checked && document.PdcSurvey.Q10071551[i].value == "1")
				bSign = true;
		}
		
		if (bSign){
			//radio Q10071552
			bChecked = false;
			for (i = 0; i < document.PdcSurvey.Q10071552.length; i++)
				if (document.PdcSurvey.Q10071552[i].checked){
					bChecked = true;
					break;
				}
			if (!bChecked)
				msg = msg + "(Question VII.15.f) Please choose 'If yes, how long is the required term of continued employment?'\n";
		}
	}
			
	// to do code
	
	if (msg != ""){
		alert(title + msg);
		//looking for the anchor in anchors array
		this.location.hash = document.getElementById("Q1007_Sect4").id;
				
		return false;
	}
	else
		return true;
}
 
//Sales Compensation Structure
function jsSalesStructure(){
 
	var msg, title;
	var i;
	var bChecked;
	title = "VIII. Sales Compensation Structure\n\n";
	msg = "";
	
	// Build the msg
	// checkbox Q100801
	bChecked = false;
	if(document.PdcSurvey.Q100801_1.checked ||
		document.PdcSurvey.Q100801_2.checked ||
		document.PdcSurvey.Q100801_3.checked ||
		document.PdcSurvey.Q100801_4.checked)
		bChecked = true;
		
	if (!bChecked)
		msg = msg + "(Question VIII.1) Please choose 'What does total compensation for your sales staff include?'\n";
		
	// to hold the values checked by user
	var bCommission = false, bBonus = false;
	if (document.PdcSurvey.Q100801_2.checked)
		bCommission = true;
	if (document.PdcSurvey.Q100801_3.checked)
		bBonus = true;
			
	// if Commission is checked, question 2 has to be answered.
	if (bCommission){
		//Checkbox, Q1008021
		bChecked = false;
		if(document.PdcSurvey.Q1008021_1.checked ||
			document.PdcSurvey.Q1008021_2.checked ||
			document.PdcSurvey.Q1008021_3.checked ||
			document.PdcSurvey.Q1008021_4.checked ||
			document.PdcSurvey.Q1008021_5.checked ||
			document.PdcSurvey.Q1008021_6.checked ||
			document.PdcSurvey.Q1008021_7.checked)
			bChecked = true;
			
		if (!bChecked)
			msg = msg + "(Question VIII.2.a) Please choose 'Commission payments are based on.'\n";
			
		//Radio, Q1008022
		bChecked = false;
		for (i = 0; i < document.PdcSurvey.Q1008022.length; i++)
			if (document.PdcSurvey.Q1008022[i].checked){
				bChecked = true;
				break;
			}
		if (!bChecked)
			msg = msg + "(Question VIII.2.b) Please choose 'Commission payments are primarily based on.'\n";
	}
	
	//if bonus is checked, question 3 has to be answered.
	if (bBonus){
		//Checkbox, Q1008031
		bChecked = false;
		if(document.PdcSurvey.Q1008031_1.checked ||
			document.PdcSurvey.Q1008031_2.checked ||
			document.PdcSurvey.Q1008031_3.checked ||
			document.PdcSurvey.Q1008031_4.checked)
			bChecked = true;
			
		if (!bChecked)
			msg = msg + "(Question VIII.3.a) Please choose 'Bonus Payments are based on.'\n";
			
		//Radio, Q1008032
		bChecked = false;
		for (i = 0; i < document.PdcSurvey.Q1008032.length; i++)
			if (document.PdcSurvey.Q1008032[i].checked){
				bChecked = true;
				break;
			}
		if (!bChecked)
			msg = msg + "(Question VIII.3.b) Please choose 'Bonus payments are primarily based on.'\n";
	}
	
	//Checkbox, Q100804
	bChecked = false;
	if(document.PdcSurvey.Q100804_1.checked ||
		document.PdcSurvey.Q100804_2.checked ||
		document.PdcSurvey.Q100804_3.checked ||
		document.PdcSurvey.Q100804_4.checked ||
		document.PdcSurvey.Q100804_5.checked ||
		document.PdcSurvey.Q100804_6.checked ||
		document.PdcSurvey.Q100804_7.checked ||
		document.PdcSurvey.Q100804_8.checked ||
		document.PdcSurvey.Q100804_9.checked ||
		document.PdcSurvey.Q100804_10.checked ||
		document.PdcSurvey.Q100804_11.checked ||
		document.PdcSurvey.Q100804_12.checked)
		bChecked = true;
		
	if (!bChecked)
		msg = msg + "(Question VIII.4) Please choose 'Which business expenses are covered for your sales force.'\n";	
	
	// to do code
	
	if (msg != ""){
		alert(title + msg);
		//looking for the anchor in anchors array
		this.location.hash = document.getElementById("Q1008").id;
				
		return false;
	}
	else
		return true;
}
 
//Validate email address
function jsEmailCheck(str) {
 
	var at="@"
	var dot="."
	var lat=str.indexOf(at)
	var lstr=str.length
	var ldot=str.indexOf(dot)
	
	if (str.indexOf(at)==-1){
	   //alert("Invalid E-mail ID")
	   return false
	}
 
	if (str.indexOf(at)==-1 || str.indexOf(at)==0 || str.indexOf(at)==lstr){
	   //alert("Invalid E-mail ID")
	   return false
	}
 
	if (str.indexOf(dot)==-1 || str.indexOf(dot)==0 || str.indexOf(dot)==lstr){
	    //alert("Invalid E-mail ID")
	    return false
	}
 
	if (str.indexOf(at,(lat+1))!=-1){
	    //alert("Invalid E-mail ID")
	    return false
	}
 
	if (str.substring(lat-1,lat)==dot || str.substring(lat+1,lat+2)==dot){
	    //alert("Invalid E-mail ID")
	    return false
	}
 
	if (str.indexOf(dot,(lat+2))==-1){
	    //alert("Invalid E-mail ID")
	    return false
	}
		
	if (str.indexOf(" ")!=-1){
	    //alert("Invalid E-mail ID")
	    return false
	}
 
 	return true					
}
 
//Beginning - Phone validation
function isInteger(s)
{   var i;
    for (i = 0; i < s.length; i++)
    {   
        // Check that current character is number.
        var c = s.charAt(i);
        if (((c < "0") || (c > "9"))) return false;
    }
    // All characters are numbers.
    return true;
}
 
function stripCharsInBag(s, bag)
{   var i;
    var returnString = "";
    // Search through string's characters one by one.
    // If character is not in bag, append to returnString.
    for (i = 0; i < s.length; i++)
    {   
        // Check that current character isn't whitespace.
        var c = s.charAt(i);
        if (bag.indexOf(c) == -1) returnString += c;
    }
    return returnString;
}
 
function checkInternationalPhone(strPhone){
	// Declaring required variables
	var digits = "0123456789";
	// non-digit characters which are allowed in phone numbers
	var phoneNumberDelimiters = "()- ";
	// characters which are allowed in international phone numbers
	// (a leading + is OK)
	var validWorldPhoneChars = phoneNumberDelimiters + "+";
	// Minimum no of digits in an international phone no.
	var minDigitsInIPhoneNumber = 10;
	
	s=stripCharsInBag(strPhone,validWorldPhoneChars);
	return (isInteger(s) && s.length >= minDigitsInIPhoneNumber);
}
//End - Phone validation
 
//Beginning - output and input a money value
//outputMoney is to convert a number to a money value
function outputMoney(number, o) {
 
	//if the number has already included a '$', convert the number first
	number = inputMoney(number);
	
	if (number!= "" && !isNaN(number))
		return "$" + outputDollars(Math.floor(number-0) + '') + outputCents(number - 0);
	else{
		if (number != ""){
			alert("This field has to be numeric.");
			//focus on the object where error pops up
			o.focus();
		}
		return number;
	}
}
 
//inputMoney is to convert a money value to a number
function inputMoney(number){
	var returnValue="";
	var array=number.split(""); // make each character be in its own array slot
	
	for(var i=0; i< array.length;i++){
		// if the character is not a $ or a space or a comma then take it
		if(array[i].search(/[$ ,]/) == -1){
		// this uses strings addition to catinate the value together
		// the first value in an addition equation sets the type of opperation - here it is a string
		returnValue += array[i].toString();
		}
	}
	// this converts it to an integer
	return(returnValue);
}
 
function outputDollars(number) {
    if (number.length <= 3)
        return (number == '' ? '0' : number);
    else {
        var mod = number.length%3;
        var output = (mod == 0 ? '' : (number.substring(0,mod)));
        for (i=0 ; i < Math.floor(number.length/3) ; i++) {
            if ((mod ==0) && (i ==0))
                output+= number.substring(mod+3*i,mod+3*i+3);
            else
                output+= ',' + number.substring(mod+3*i,mod+3*i+3);
        }
        return (output);
    }
}
 
function outputCents(amount) {
    amount = Math.round( ( (amount) - Math.floor(amount) ) *100);
    return (amount < 10 ? '.0' + amount : '.' + amount);
}
//End - output a money value
 
//Beginning - output a whole number
function outputWholeNumber(number, o) {
	if (number != "" && !isNaN(number))
		return Math.abs(Math.floor(number));
	else{
		if (number != ""){
			alert("This field has to be numeric.");
			//focus on the object where error pops up
			o.focus();
		}
		return number;
	}
}
//End - output a whole number
 
//Beginning - output and input a percent
//outputPercent is to convert a number to a percent
function outputPercent(number, o){
 
	var temp;
	var parts;
 
	//if the number has already included a '%', convert the number first
	number = inputPercent(number);
		
	if (number != "" && !isNaN(number)){
		
		if (number > 100 || number < 0){
			alert("% has to be between 0 and 100.");
			//focus on the object where error pops up
			o.focus();
		}
		//rounded to one decemal place, such as 12.5
		temp = (Math.round((number-0)*10)/10).toString();
		
		//check if it is a whole number, a '0' will be added to the whole number such as 12, to be 12.0
		parts = temp.split(".");
		if (parts.length < 2){
			temp = parts[0] + "." + "0";
		}
		return temp + '%';
	}
	else{
		if (number != ""){
			alert("This field has to be numeric.");
			//focus on the object where error pops up
			o.focus();
		}
		return number;
	}
}
 
//inputPercent is to convert a percent to a number
function inputPercent(number){
 
	var number1;
	
	if (number.substring(number.length - 1, number.length) == "%"){
		number1 = number.substring(0, number.length - 1);
		
		if (!isNaN(number1))
			return number1;
		else
			return number;
	}
	else	
		return number;		
}
//End - output and input a percentage number
 
//Trim a string
function trim(s) {
  while (s.substring(0,1) == ' ') {
    s = s.substring(1,s.length);
  }
  while (s.substring(s.length-1,s.length) == ' ') {
    s = s.substring(0,s.length-1);
  }
  return s;
}
 
//Validate VI_13
function VI_13(number, o){
	if (isNaN(number)){
		alert("This field has to be numeric.");	
		o.focus();	
		return number;
	}
	else if (Math.abs(number) > 100){
		alert("The value of this field can't be more than 100.");
		o.focus();		
		return number;
	}
	else
		return number;
}
 
// Validate time
function validateTime(timeStr, timeObj){ 
 
	if (timeStr != ""){
 
		/*reference from the web
		// Checks if time is in HH:MM:SS AM/PM format. // The seconds and AM/PM are optional. 
		//var timePat = /^(\d{1,2}):(\d{2})(:(\d{2}))?­(\s?(AM|am|PM|pm))?$/; 
		//var timePat = /\d{1,2}:\d\d\s(A|P­)M/i;*/
		
		//Check if time is in HH:MM AM/PM format
		var timePat = /\d{1,2}:\d\d(\s?(A|P-)M)?/i;
		var matchArray = timeStr.match(timePat);
		
		if (matchArray == null){
			alert("Time is not in a valid format.");
			timeObj.focus(); 
			return timeStr; 
		}
		
		tmpTimeStr = timeStr.toUpperCase();
		
		var iPos;
		var timeArray;
		var am, pm;
		
		//find where AM and PM is in time string
		if (tmpTimeStr.indexOf("AM") != -1){
			iPos = tmpTimeStr.indexOf("AM");
			am = true;
		}
		else if (tmpTimeStr.indexOf("PM") != -1){
			iPos = tmpTimeStr.indexOf("PM");
			pm = true;
		}
		else
			iPos = 0;
		
		if (iPos != 0){
			//if input contains AM or PM, convert to military time such as 16:20 instead of 4:20 PM
			tmpTimeStr = tmpTimeStr.substring(0, iPos);
			
			timeArray = tmpTimeStr.split(":");
			hour = timeArray[0]; 
			minute = timeArray[1];
			
			//If the timeStr contains AM and PM, hour should not more than 12
			if (hour < 0 || hour > 12) { 
				alert("Hour must be between 0 and 12.");
				timeObj.focus(); 
				return timeStr;
			} 
			else if (minute<0 || minute > 59){
				alert ("Minute must be between 0 and 59.");
				timeObj.focus();
				return timeStr;
			}
			else{
				//convert to military
				if (am)
					if (parseInt(hour, 10) == 12)
						return "00:" + minute;
					else
						return tmpTimeStr;
						
				if (pm)
					if (parseInt(hour, 10) == 0 || parseInt(hour, 10) == 12)
						return "12:" + minute;
					else
						return (parseInt(hour, 10) + 12).toString() + ":" + minute
			}	
		}
		else{
			timeArray = tmpTimeStr.split(":");
			hour = timeArray[0]; 
			minute = timeArray[1];
			
			//input does not contain AM or PM
			if (hour < 0 || hour > 23) { 
				alert("Hour must be between 0 and 23.");
				timeObj.focus(); 
				return timeStr;
			} 
			else if (minute<0 || minute > 59){
				alert ("Minute must be between 0 and 59.");
				timeObj.focus();
				return timeStr;
			}
			else
				return timeStr;	
		}
	}	
	else
		return timeStr;
}
 
//When user check VI. 15, all the text box within 15 should be reset
function VI_15(){
	if (document.PdcSurvey.Q1006151_1.checked){
		PdcSurvey.Q1006152_1.value = "";
		PdcSurvey.Q1006153_1.value = "";
		PdcSurvey.Q1006154_1.value = "";
		PdcSurvey.Q1006152_2.value = "";
		PdcSurvey.Q1006153_2.value = "";
		PdcSurvey.Q1006154_2.value = "";
		PdcSurvey.Q1006152_3.value = "";
		PdcSurvey.Q1006153_3.value = "";
		PdcSurvey.Q1006154_3.value = "";
	}
}
function drugOn(){
	PdcSurvey.Q100606_1.disabled = false;
	PdcSurvey.Q100606_2.disabled = false;
	PdcSurvey.Q100606_3.disabled = false;
}
 
function drugOff(){
	PdcSurvey.Q100606_1.disabled = true;
	PdcSurvey.Q100606_1.checked = false;
	PdcSurvey.Q100606_2.disabled = true;
	PdcSurvey.Q100606_2.checked = false;
	PdcSurvey.Q100606_3.disabled = true;
	PdcSurvey.Q100606_3.checked = false;
}
function performOn(){
	PdcSurvey.Q100610_1.disabled = false;
	PdcSurvey.Q100610_2.disabled = false;
	PdcSurvey.Q100610_3.disabled = false;
	PdcSurvey.Q100611_1.disabled = false;
	PdcSurvey.Q100611_2.disabled = false;
	PdcSurvey.Q100611_3.disabled = false;
	PdcSurvey.Q100611_4.disabled = false;
	
}
 
function performOff(){
	PdcSurvey.Q100610_1.disabled = true;
	PdcSurvey.Q100610_1.checked = false;
	PdcSurvey.Q100610_2.disabled = true;
	PdcSurvey.Q100610_2.checked = false;
	PdcSurvey.Q100610_3.disabled = true;
	PdcSurvey.Q100610_3.checked = false;
	PdcSurvey.Q100611_1.disabled = true;
	PdcSurvey.Q100611_1.checked = false;
	PdcSurvey.Q100611_2.disabled = true;
	PdcSurvey.Q100611_2.checked = false;
	PdcSurvey.Q100611_3.disabled = true;
	PdcSurvey.Q100611_3.checked = false;
	PdcSurvey.Q100611_4.disabled = true;
	PdcSurvey.Q100611_4.checked = false;
	
}
 
function commission(){
	if (PdcSurvey.Q100801_2.checked == true){
		PdcSurvey.Q1008021_1.disabled = false;
		PdcSurvey.Q1008021_2.disabled = false;
		PdcSurvey.Q1008021_3.disabled = false;
		PdcSurvey.Q1008021_4.disabled = false;
		PdcSurvey.Q1008021_5.disabled = false;
		PdcSurvey.Q1008021_6.disabled = false;
		PdcSurvey.Q1008021_7.disabled = false;
		PdcSurvey.Q1008022_1.disabled = false;
		PdcSurvey.Q1008022_2.disabled = false;
		PdcSurvey.Q1008022_3.disabled = false;
		PdcSurvey.Q1008022_4.disabled = false;
		PdcSurvey.Q1008022_5.disabled = false;
		PdcSurvey.Q1008022_6.disabled = false;
		PdcSurvey.Q1008022_7.disabled = false;
	}
	else{
		PdcSurvey.Q1008021_1.disabled = true;
		PdcSurvey.Q1008021_1.checked = false;
		PdcSurvey.Q1008021_2.disabled = true;
		PdcSurvey.Q1008021_2.checked = false;
		PdcSurvey.Q1008021_3.disabled = true;
		PdcSurvey.Q1008021_3.checked = false;
		PdcSurvey.Q1008021_4.disabled = true;
		PdcSurvey.Q1008021_4.checked = false;
		PdcSurvey.Q1008021_5.disabled = true;
		PdcSurvey.Q1008021_5.checked = false;
		PdcSurvey.Q1008021_6.disabled = true;
		PdcSurvey.Q1008021_6.checked = false;
		PdcSurvey.Q1008021_7.disabled = true;
		PdcSurvey.Q1008021_7.checked = false;
		PdcSurvey.Q1008022_1.disabled = true;
		PdcSurvey.Q1008022_1.checked = false;
		PdcSurvey.Q1008022_2.disabled = true;
		PdcSurvey.Q1008022_2.checked = false;
		PdcSurvey.Q1008022_3.disabled = true;
		PdcSurvey.Q1008022_3.checked = false;
		PdcSurvey.Q1008022_4.disabled = true;
		PdcSurvey.Q1008022_4.checked = false;
		PdcSurvey.Q1008022_5.disabled = true;
		PdcSurvey.Q1008022_5.checked = false;
		PdcSurvey.Q1008022_6.disabled = true;
		PdcSurvey.Q1008022_6.checked = false;
		PdcSurvey.Q1008022_7.disabled = true;
		PdcSurvey.Q1008022_7.checked = false;
		
	}
}
 
function bonus(){
	if (PdcSurvey.Q100801_3.checked == true){
		PdcSurvey.Q1008031_1.disabled = false;
		PdcSurvey.Q1008031_2.disabled = false;
		PdcSurvey.Q1008031_3.disabled = false;
		PdcSurvey.Q1008031_4.disabled = false;
		PdcSurvey.Q1008032_1.disabled = false;
		PdcSurvey.Q1008032_2.disabled = false;
		PdcSurvey.Q1008032_3.disabled = false;
		PdcSurvey.Q1008032_4.disabled = false;
	}
	else {
		PdcSurvey.Q1008031_1.disabled = true;
		PdcSurvey.Q1008031_1.checked = false;
		PdcSurvey.Q1008031_2.disabled = true;
		PdcSurvey.Q1008031_2.checked = false;
		PdcSurvey.Q1008031_3.disabled = true;
		PdcSurvey.Q1008031_3.checked = false;
		PdcSurvey.Q1008031_4.disabled = true;
		PdcSurvey.Q1008031_4.checked = false;
		PdcSurvey.Q1008032_1.disabled = true;
		PdcSurvey.Q1008032_1.checked = false;
		PdcSurvey.Q1008032_2.disabled = true;
		PdcSurvey.Q1008032_2.checked = false;
		PdcSurvey.Q1008032_3.disabled = true;
		PdcSurvey.Q1008032_4.checked = false;
		PdcSurvey.Q1008032_4.disabled = true;
		PdcSurvey.Q1008032_4.checked = false;
	}
}
 
function shift(){
	if (PdcSurvey.Q1006151_1.checked == true){
		PdcSurvey.Q1006152_1.disabled = true;
		PdcSurvey.Q1006152_2.disabled = true;
		PdcSurvey.Q1006152_3.disabled = true;
		PdcSurvey.Q1006153_1.disabled = true;
		PdcSurvey.Q1006153_2.disabled = true;
		PdcSurvey.Q1006153_3.disabled = true;
		PdcSurvey.Q1006154_1.disabled = true;
		PdcSurvey.Q1006154_2.disabled = true;
		PdcSurvey.Q1006154_3.disabled = true;
		PdcSurvey.Q1006152_1.value = "";
		PdcSurvey.Q1006152_2.value = "";
		PdcSurvey.Q1006152_3.value = "";
		PdcSurvey.Q1006153_1.value = "";
		PdcSurvey.Q1006153_2.value = "";
		PdcSurvey.Q1006153_3.value = "";
		PdcSurvey.Q1006154_1.value = "";
		PdcSurvey.Q1006154_2.value = "";
		PdcSurvey.Q1006154_3.value = "";
	}
	else{
		PdcSurvey.Q1006152_1.disabled = false;
		PdcSurvey.Q1006152_2.disabled = false;
		PdcSurvey.Q1006152_3.disabled = false;
		PdcSurvey.Q1006153_1.disabled = false;
		PdcSurvey.Q1006153_2.disabled = false;
		PdcSurvey.Q1006153_3.disabled = false;
		PdcSurvey.Q1006154_1.disabled = false;
		PdcSurvey.Q1006154_2.disabled = false;
		PdcSurvey.Q1006154_3.disabled = false;
	}
	
}
 
function group(){
	if (PdcSurvey.Q100617_2.checked == true){
		PdcSurvey.Q100618.disabled = true;
		PdcSurvey.Q100618.value = "";
		PdcSurvey.Q100619_1.disabled = true;
		PdcSurvey.Q100619_1.checked = false;
		PdcSurvey.Q100619_2.disabled = true;
		PdcSurvey.Q100619_2.checked = false;
		PdcSurvey.Q100620_1.disabled = true;
		PdcSurvey.Q100620_1.checked = false;
		PdcSurvey.Q100620_2.disabled = true;
		PdcSurvey.Q100620_2.checked = false;
	}
	else {
		PdcSurvey.Q100618.disabled = false;
		PdcSurvey.Q100619_1.disabled = false;
		PdcSurvey.Q100619_2.disabled = false;
		PdcSurvey.Q100620_1.disabled = false;
		PdcSurvey.Q100620_2.disabled = false;
	}
	
}
 
function lifeInsurance(){
	if (PdcSurvey.Q100704_1.checked == true){
			PdcSurvey.Q100705_1.disabled = true;
			PdcSurvey.Q100705_1.checked = false;
			PdcSurvey.Q100705_2.disabled = true;
			PdcSurvey.Q100705_2.checked = false;
			PdcSurvey.Q100705_3.disabled = true;
			PdcSurvey.Q100705_3.checked = false;
			PdcSurvey.Q100705_4.disabled = true;
			PdcSurvey.Q100705_4.checked = false;
			PdcSurvey.Q100705_5.disabled = true;
			PdcSurvey.Q100705_5.checked = false;
			PdcSurvey.Q100706_1.disabled = true;
			PdcSurvey.Q100706_1.checked = false;
			PdcSurvey.Q100706_2.disabled = true;
			PdcSurvey.Q100706_2.checked = false;
			PdcSurvey.Q100706_3.disabled = true;
			PdcSurvey.Q100706_3.checked = false;
			PdcSurvey.Q100707_1.disabled = true;
			PdcSurvey.Q100707_1.checked = false;
			PdcSurvey.Q100707_2.disabled = true;
			PdcSurvey.Q100707_2.checked = false;
 
			
	}
	else {
		PdcSurvey.Q100705_1.disabled = false;
		PdcSurvey.Q100705_2.disabled = false;
		PdcSurvey.Q100705_3.disabled = false;
		PdcSurvey.Q100705_4.disabled = false;
		PdcSurvey.Q100705_5.disabled = false;
		PdcSurvey.Q100706_1.disabled = false;
		PdcSurvey.Q100706_2.disabled = false;
		PdcSurvey.Q100706_3.disabled = false;
		PdcSurvey.Q100707_1.disabled = false;
		PdcSurvey.Q100707_2.disabled = false;
		PdcSurvey.Q1007123_1.disabled = false;
		PdcSurvey.Q1007123_2.disabled = false;
	}
}
 
function pto(){
	if (PdcSurvey.Q100711_1.checked == true){
		PdcSurvey.Q1007121_1.disabled = false;
		PdcSurvey.Q1007121_2.disabled = false;
		PdcSurvey.Q1007121_3.disabled = false;
		PdcSurvey.Q1007121_4.disabled = false;	
		PdcSurvey.Q10071221_1.disabled = false;
		PdcSurvey.Q10071221_2.disabled = false;
		PdcSurvey.Q10071221_3.disabled = false;
		PdcSurvey.Q10071222_1.disabled = false;
		PdcSurvey.Q10071222_2.disabled = false;
		PdcSurvey.Q10071222_3.disabled = false;
		PdcSurvey.Q1007123_1.disabled = false;
		PdcSurvey.Q1007123_2.disabled = false;
		PdcSurvey.Q10071223_1.disabled = false;
		PdcSurvey.Q10071223_2.disabled = false;
		PdcSurvey.Q10071223_3.disabled = false;
		PdcSurvey.Q10071224_1.disabled = false;
		PdcSurvey.Q10071224_2.disabled = false;
		PdcSurvey.Q10071224_3.disabled = false;
		PdcSurvey.Q10071241_1.disabled = false;
		PdcSurvey.Q10071241_2.disabled = false;
		PdcSurvey.Q10071241_3.disabled = false;
		
	}
	else {
		PdcSurvey.Q1007121_1.disabled = true;
		PdcSurvey.Q1007121_1.checked = false;
		PdcSurvey.Q1007121_2.disabled = true;
		PdcSurvey.Q1007121_2.checked = false;
		PdcSurvey.Q1007121_3.disabled = true;
		PdcSurvey.Q1007121_3.checked = false;
		PdcSurvey.Q1007121_4.disabled = true;
		PdcSurvey.Q1007121_4.checked = false;
		PdcSurvey.Q10071221_1.disabled = true;
		PdcSurvey.Q10071221_1.value = "";
		PdcSurvey.Q10071221_2.disabled = true;
		PdcSurvey.Q10071221_2.value = "";
		PdcSurvey.Q10071221_3.disabled = true;
		PdcSurvey.Q10071221_3.value = "";
		PdcSurvey.Q10071222_1.disabled = true;
		PdcSurvey.Q10071222_1.value = "";
		PdcSurvey.Q10071222_2.disabled = true;
		PdcSurvey.Q10071222_2.value = "";
		PdcSurvey.Q10071222_3.disabled = true;
		PdcSurvey.Q10071222_3.value = "";
		PdcSurvey.Q10071223_1.disabled = true;
		PdcSurvey.Q10071223_1.value = "";
		PdcSurvey.Q10071223_2.disabled = true;
		PdcSurvey.Q10071223_2.value = "";
		PdcSurvey.Q10071223_3.disabled = true;
		PdcSurvey.Q10071223_3.value = "";
		PdcSurvey.Q10071224_1.disabled = true;
		PdcSurvey.Q10071224_1.value = "";
		PdcSurvey.Q10071224_2.disabled = true;
		PdcSurvey.Q10071224_2.value = "";
		PdcSurvey.Q10071224_3.disabled = true;
		PdcSurvey.Q10071224_3.value = "";
		PdcSurvey.Q100707_1.disabled = true;
		PdcSurvey.Q100707_1.checked = false;
		PdcSurvey.Q100707_2.disabled = true;
		PdcSurvey.Q100707_2.checked = false;
		PdcSurvey.Q1007123_1.disabled = true;
		PdcSurvey.Q1007123_1.checked = false;
		PdcSurvey.Q1007123_2.disabled = true;
		PdcSurvey.Q1007123_2.checked = false;
		PdcSurvey.Q10071241_1.disabled = true;
		PdcSurvey.Q10071241_1.checked = false;
		PdcSurvey.Q10071241_2.disabled = true;
		PdcSurvey.Q10071241_1.checked = false;
		PdcSurvey.Q10071241_3.disabled = true;
		PdcSurvey.Q10071241_3.checked = false;
	}
}
 
function incent(){
	if	(PdcSurvey.Q100612a_2.checked == true){
		PdcSurvey.Q100612b_1.disabled = true;
		PdcSurvey.Q100612b_1.checked = false;
		PdcSurvey.Q100612b_2.disabled = true;
		PdcSurvey.Q100612b_2.checked = false;
		PdcSurvey.Q100612c.disabled = true;
		PdcSurvey.Q100612c.value = "";
		PdcSurvey.Q100612d.disabled = true;
		PdcSurvey.Q100612d.value = "";
		PdcSurvey.Q100612e_1.disabled = true;
		PdcSurvey.Q100612e_1.checked = false;
		PdcSurvey.Q100612e_2.disabled = true;		
		PdcSurvey.Q100612e_2.checked = false;
	}
	else{
		PdcSurvey.Q100612b_1.disabled = false;
		PdcSurvey.Q100612b_2.disabled = false;
		PdcSurvey.Q100612c.disabled = false;
		PdcSurvey.Q100612d.disabled = false;
		PdcSurvey.Q100612e_1.disabled = false;
		PdcSurvey.Q100612e_2.disabled = false;
	}
	
}
 
function sick(){
 
}
 
function tuition(){
	 if (PdcSurvey.Q1007151_4.checked == true){
	 	PdcSurvey.Q1007152_1.disabled = true;
		PdcSurvey.Q1007152_1.value = "";
		PdcSurvey.Q1007152_2.disabled = true;
		PdcSurvey.Q1007152_2.value = "";
		PdcSurvey.Q1007152_3.disabled = true;
		PdcSurvey.Q1007152_3.value = "";
		PdcSurvey.Q1007153_1.disabled = true;
		PdcSurvey.Q1007153_1.checked = false;
		PdcSurvey.Q1007153_2.disabled = true;
		PdcSurvey.Q1007153_2.checked = false;
		PdcSurvey.Q1007153_3.disabled = true;
		PdcSurvey.Q1007153_3.checked = false;
		PdcSurvey.Q1007153_4.disabled = true;
		PdcSurvey.Q1007153_4.checked = false;
		PdcSurvey.Q1007154_1.disabled = true;
		PdcSurvey.Q1007154_1.checked = false;
		PdcSurvey.Q1007154_2.disabled = true;
		PdcSurvey.Q1007154_2.checked = false;
		PdcSurvey.Q1007154_3.disabled = true;
		PdcSurvey.Q1007154_3.checked = false;
		PdcSurvey.Q1007154_4.disabled = true;
		PdcSurvey.Q1007154_4.checked = false;
		PdcSurvey.Q1007154_5.disabled = true;
		PdcSurvey.Q1007154_5.checked = false;
		PdcSurvey.Q10071551_1.disabled = true;
		PdcSurvey.Q10071551_1.checked = false;
		PdcSurvey.Q10071551_2.disabled = true;
		PdcSurvey.Q10071551_2.checked = false;
		PdcSurvey.Q10071552_1.disabled = true;
		PdcSurvey.Q10071552_1.checked = false;
		PdcSurvey.Q10071552_2.disabled = true;
		PdcSurvey.Q10071552_2.checked = false;
		PdcSurvey.Q10071552_3.disabled = true;
		PdcSurvey.Q10071552_3.checked = false;
		PdcSurvey.Q10071552_4.disabled = true;
		PdcSurvey.Q10071552_4.checked = false;
		PdcSurvey.Q10071552_5.disabled = true;	
		PdcSurvey.Q10071552_5.checked = false;	
	 }
	 else{
	 	PdcSurvey.Q1007152_1.disabled = false;
		PdcSurvey.Q1007152_2.disabled = false;
		PdcSurvey.Q1007152_3.disabled = false;
		PdcSurvey.Q1007153_1.disabled = false;
		PdcSurvey.Q1007153_2.disabled = false;
		PdcSurvey.Q1007153_3.disabled = false;
		PdcSurvey.Q1007153_4.disabled = false;
		PdcSurvey.Q1007154_1.disabled = false;
		PdcSurvey.Q1007154_2.disabled = false;
		PdcSurvey.Q1007154_3.disabled = false;
		PdcSurvey.Q1007154_4.disabled = false;
		PdcSurvey.Q1007154_5.disabled = false;
		PdcSurvey.Q10071551_1.disabled = false;
		PdcSurvey.Q10071551_2.disabled = false;
		PdcSurvey.Q10071552_1.disabled = false;
		PdcSurvey.Q10071552_2.disabled = false;
		PdcSurvey.Q10071552_3.disabled = false;
		PdcSurvey.Q10071552_4.disabled = false;
		PdcSurvey.Q10071552_5.disabled = false; 
	 }
	}
	 function tuition2(){
	 	if(PdcSurvey.Q10071551_2.checked == true){
			PdcSurvey.Q10071552_1.disabled = true;
			PdcSurvey.Q10071552_1.checked = false;
			PdcSurvey.Q10071552_2.disabled = true;
			PdcSurvey.Q10071552_2.checked = false;
			PdcSurvey.Q10071552_3.disabled = true;
			PdcSurvey.Q10071552_3.checked = false;
			PdcSurvey.Q10071552_4.disabled = true;
			PdcSurvey.Q10071552_4.checked = false;
			PdcSurvey.Q10071552_5.disabled = true;
			PdcSurvey.Q10071552_5.checked = false;
		}
		else{
			PdcSurvey.Q10071552_1.disabled = false;
			PdcSurvey.Q10071552_2.disabled = false;
			PdcSurvey.Q10071552_3.disabled = false;
			PdcSurvey.Q10071552_4.disabled = false;
			PdcSurvey.Q10071552_5.disabled = false;
		}
	 }
 
 
//Disable the Tab key
function DisableTabKey() {
	if (event.keyCode==9) {
		return false;
	}
}
 
function Total3(o1, o2, o3, o4){
 
	var data = new Array(3);
	
	data[0] = o1.value;
	data[1] = o2.value;
	data[2] = o3.value;
										
	LoopData(data, o4);
}
 
function LoopData(data, o){
	
	var total = 0;
	
	for (var i = 0; i < data.length; i ++){
		if (data[i] == "" || isNaN(stripCommaAndSpace(data[i])))
			data[i] = "0";
		//strip the comma from thousands
		total = total + parseFloat(stripCommaAndSpace(data[i]));
		
	}
		
	returnValue = outputTwoDecimalsWithComma(total.toString(), o);	
		
	if (returnValue == 0)
		o.value = "0.00"
	else
		o.value = returnValue
}
</script>
<script type="text/javascript" src="/survey/perseus6.js"></script>
<link href="surveys.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
body,td,th {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
}
.style6 {font-size: x-large}
.style7 {font-size: large}
.pagebreak {
	page-break-after: always;
}
.style24 {font-size: 9pt}
.style9 {font-size: x-small}
.style15 {color: #FF0000}
.topic-text {font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
 font-size : 10pt;
}
.style25 {
	font-size: 12px;
	font-weight: bold;
}
-->
</style>
</head>
<body bgcolor="#FFFFFF" onload=""> 
<!-- Do not edit the form action command or any of the form fields. --> 
<h1></h1> 
<form name="PdcSurvey" action="https://www.perseus.com/cgi-bin/perseus6.pl" method="post"> 
  <p align="center" class="mainHeadline">
  <table width="90%" border="0" align="center" cellpadding="0">
      <tr>
        <td height="34" align="center"><span class="style6">IPC Wage Rate &amp; Salary Survey</span></td>
      </tr>
      <tr>
        <td height="19"><div align="center"><span class="style6">For the Assembly Equipment Industry </span></div></td>
      </tr>
  </table>
    <p>&nbsp;</p>
    <table width="90%" border="0" align="center" cellpadding="0">
      <tr>
        <td><span class="bodyType">This survey is comprised of 8 sections: (I) General Information; (II) Wage Rate; (III) Salary; (IV) Sales Compensation; (V) Demographics; (VI) Personnel &amp; Compensation Policies; (VII) Benefits and Other Compensation; and (VIII) Sales Compensation Structure.</span></td>
      </tr>
      <tr>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td><span class="bodyType">All data submitted to the IPC will be held in the strictest confidence. Data will be reported only for aggregate industry trends, and strict guidelines limit publication of data that would allow anyone to deduce data for a single participant. Where possible, data will be broken out by region.</span> </td>
      </tr>
      <tr>
        <td>&nbsp;</td>
      </tr>
    </table>
    <table width="90%" border="0" align="center" cellpadding="0">
      <tr>
        <td><span class="mainHeadline">Instructions</span></td>
      </tr>
      <tr>
        <td><ul>
          <li><span class="bodyType">Please read all instructions carefully and completely before completing this survey. </span></li>
          <li><span class="bodyType">Answer all questions as of January 1, 2008.</span> </li>
          <li><span class="bodyType">Provide your answer in US$. For average exchange rates in 2007, please contact Piyamart Holmgren at <a href="mailto:piyamarthom-uem@ipc.org">homupi@ipc.org</a>.</span> </li>
          <li> FTE = full-time equivalent employees </li>
          <li><span class="bodyType">For detailed instructions on completing sections (II) Wage Rate Survey, (III) Salary Survey and (IV) Sales Compensation Survey, please <u><a href="jobs.htm" target="_blank">click here to review the Job Descriptions</a></u></span>.</li>
          <li> It is suggested that you print a copy of this survey and gather all the necessary information before starting to enter data.&nbsp; This survey cannot be saved and reopened.&nbsp; It must be completed in one sitting </li>
          <li><span class="bodyType">To receive a copy of the final report, please complete and submit this questionnaire <b>by August 11, 2008.</b> </span></li>
        </ul></td>
      </tr>
      <tr>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td><table width="75%"  border="0" align="center" cellpadding="0" cellspacing="0">
          <tr>
            <td width="38%"><div align="right">
                <input onkeypress="return noenter()" tabindex="-1" class="submit-button" type="button" name="resetButton" value="Reset/Clear the Form" onClick="reset_form();" />
            </div></td>
            <td width="24%">&nbsp;</td>
            <td width="38%"><span class="style24"><strong>
              <input onkeypress="return noenter()" tabindex="-1" type="button" name="print2" value="Print Questionnaire" onclick= "printPage1()" />
            </strong></span></td>
          </tr>
        </table></td>
      </tr>
    </table>
    <p align="center" class="mainHeadline">
    
  <table width="100%"  border="1" cellpadding="0" bordercolor="#333333">
    <tr>
      <td height="41" align="center" valign="middle" bgcolor="#CCCCCC"><p> </p>
      <p align="center" class="romanNum"> <b><a name="Q1001" class="question-heading style7" id="Q1001"> I. General Information</a></b></p></td>
    </tr>
  </table>
  <p class="questionHeadling">&nbsp;</p>
  <table align="center"> 
    <tr> 
      <td width="162" class="bodyType"><label class="topic-text" for="Q1001_1">Survey Access Code</label></td> 
        <td width="233"><input type="text" name="Q1001_1" id="Q1001_1" maxlength="255" size="35" /></td> 
        <td width="305" rowspan="4" valign="top"><span class="style9">If you don't know these codes, please contact Piyamart Holmgren at <a href="mailto:piyamarthom-uem@ipc.org">homupi@ipc.org</a> or 1 847 597 2868. </span></td>
    </tr> 
      <tr> 
        <td class="bodyType"><label class="topic-text" for="Q1001_2">IPC Company Code</label></td> 
        <td><input type="text" name="Q1001_2" id="Q1001_2" maxlength="255" size="35" /></td> 
      </tr> 
      <tr> 
        <td class="bodyType"><label class="topic-text" for="Q1001_3">Name</label></td> 
        <td><input type="text" name="Q1001_3" id="Q1001_3" maxlength="255" size="35" /></td> 
      </tr> 
      <tr> 
        <td class="bodyType"><label class="topic-text" for="Q1001_4">Title</label></td> 
        <td><input type="text" name="Q1001_4" id="Q1001_4" maxlength="255" size="35" /></td> 
      </tr> 
      <tr> 
        <td class="bodyType"><label class="topic-text" for="Q1001_5">Email</label></td> 
        <td><input type="text" name="Q1001_5" id="Q1001_5" maxlength="255" size="35" /></td> 
        <td>&nbsp;</td>
      </tr> 
      <tr> 
        <td class="bodyType"><label class="topic-text" for="Q1001_6">Phone</label></td> 
        <td><input type="text" name="Q1001_6" id="Q1001_6" maxlength="255" size="35" /></td> 
        <td>&nbsp;</td>
      </tr> 
      <tr> 
        <td class="bodyType"><label class="topic-text" for="Q1001_7">Fax</label></td> 
        <td><input type="text" name="Q1001_7" id="Q1001_7" maxlength="255" size="35" /></td> 
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td class="bodyType">&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td class="bodyType">&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr> 
  </table> 
  <p class="pagebreak">&nbsp;</p>
  <p class="questionHeadling"> </p>
  <p class="questionHeadling"> <a name="Q10051" class="questionHeadling" id="Q10051"> </a>1. Please indicate your company's PRIMARY product type. </p>
  <p class="bodyType"><span class="response-set">
  <label class="choice-text">
  <input type="radio" name="Q1002" value="1" id="Q1002_1" />
Pick and place</label>
  <br />
  <label class="choice-text">
  <input type="radio" name="Q1002" value="2" id="Q1002_2" />
Ovens</label>
  <br />
  <label class="choice-text">
  <input type="radio" name="Q1002" value="3" id="Q1002_3" />
Printing</label>
  <br />
  <label class="choice-text">
  <input type="radio" name="Q1002" value="4" id="Q1002_4" />
Dispensing</label>
  <br />
  <label class="choice-text">
  <input type="radio" name="Q1002" value="5" id="Q1002_5" />
Inspection</label>
  <br />
  <label class="choice-text">
  <input type="radio" name="Q1002" value="6" id="Q1002_6" />
Cleaning</label>
  <br />
  <label class="choice-text">
  <input type="radio" name="Q1002" value="7" id="Q1002_7" />
Soldering</label>
  <br />
  <label class="choice-text">
  <input type="radio" name="Q1002" value="8" id="Q1002_8" />
Board handling</label>
  </span> </p>
  <p class="romanNum">    
  <table width="100%"  border="1" cellpadding="0" bordercolor="#333333">
    <tr>
      <td height="41" align="center" valign="middle" bgcolor="#CCCCCC"><p> </p>
          <p align="center" class="romanNum"><b><a name="Q1002" class="question-heading style7" id="Q1002">II. Wage Rate</a></b></p></td>
    </tr>
  </table>
  <p>For each of the following non-exempt, hourly positions please report the total number of FTEs employed in each position, the average hourly wage and the minimum and maximum hourly wages for each job category. Please enter all wage rates in US dollars and cents per hour. </p>
  <table> 
      <tr>
        <td height="32" class="bodyType">&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td height="32" class="bodyType">&nbsp;</td>
        <td width="129"><div align="center"><span class="questionHeadling"><a name="Q10021" class="question-heading" id="Q10021">Number  of Employees</a></span></div></td>
        <td width="129"><div align="center"><span class="questionHeadling"><a name="Q10022" class="question-heading" id="Q10022">Average Hourly Wage</a></span></div></td>
        <td width="129"><div align="center"><span class="questionHeadling"><a name="Q10023" class="question-heading" id="Q10023">Minimum  Hourly Wage</a></span></div></td>
        <td width="129"><div align="center"><span class="questionHeadling"><a name="Q10024" class="question-heading" id="Q10024">Maximum  Hourly Wage</a></span></div></td>
      </tr>
<tr>
  <td><label class="topic-text" for="Q10021_1"><a href="jobs.htm#a" target="_blank">Accounts Payable Administrator </a></label></td> 
        <td><div align="center">
          <input type="text" name="Q10021_1" id="Q10021_1" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10022_1" id="Q10022_1" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10023_1" id="Q10023_1" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10024_1" id="Q10024_1" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
    </tr> 
      <tr>
        <td><label class="topic-text" for="Q10021_2"><a href="jobs.htm#d" target="_blank">Credit Supervisor</a></label></td> 
        <td><div align="center">
          <input type="text" name="Q10021_2" id="Q10021_2" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10022_2" id="Q10022_2" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10023_2" id="Q10023_2" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10024_2" id="Q10024_2" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
      </tr> 
      <tr>
        <td><label class="topic-text" for="Q10021_3"><a href="jobs.htm#f" target="_blank">Customer Support Administrator</a></label></td> 
        <td><div align="center">
          <input type="text" name="Q10021_3" id="Q10021_3" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10022_3" id="Q10022_3" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10023_3" id="Q10023_3" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10024_3" id="Q10024_3" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
      </tr> 
      <tr>
        <td><label class="topic-text" for="Q10021_4"><a href="jobs.htm#g" target="_blank">Executive Administrative Assistant</a></label></td> 
        <td><div align="center">
          <input type="text" name="Q10021_4" id="Q10021_4" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10022_4" id="Q10022_4" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10023_4" id="Q10023_4" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10024_4" id="Q10024_4" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
      </tr> 
      <tr>
        <td><label class="topic-text" for="Q10021_5"><a href="jobs.htm#h" target="_blank">Facilities Speciallist</a></label></td> 
        <td><div align="center">
          <input type="text" name="Q10021_5" id="Q10021_5" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10022_5" id="Q10022_5" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10023_5" id="Q10023_5" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10024_5" id="Q10024_5" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
      </tr> 
      <tr>
        <td><label class="topic-text" for="Q10021_6"><a href="jobs.htm#k" target="_blank">Logistics Representative</a></label></td> 
        <td><div align="center">
          <input type="text" name="Q10021_6" id="Q10021_6" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10022_6" id="Q10022_6" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10023_6" id="Q10023_6" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10024_6" id="Q10024_6" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
      </tr> 
      <tr>
        <td><label class="topic-text" for="Q10021_7"><a href="jobs.htm#w" target="_blank">Shipping and Receiving Clerk </a></label></td> 
        <td><div align="center">
          <input type="text" name="Q10021_7" id="Q10021_7" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10022_7" id="Q10022_7" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10023_7" id="Q10023_7" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10024_7" id="Q10024_7" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
      </tr> 
      <tr>
        <td><label class="topic-text" for="Q10021_8"><a href="jobs.htm#v" target="_blank">Senior Staff Accountant </a></label></td> 
        <td><div align="center">
          <input type="text" name="Q10021_8" id="Q10021_8" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10022_8" id="Q10022_8" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10023_8" id="Q10023_8" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10024_8" id="Q10024_8" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
      </tr> 
  </table>
  
  
  <p class="pagebreak">&nbsp;</p>
  <p class="romanNum">  
  <table width="100%"  border="1" cellpadding="0" bordercolor="#333333">
    <tr>
      <td height="41" align="center" valign="middle" bgcolor="#CCCCCC"><p> </p>
          <p align="center" class="romanNum style7"><b><a class="question-heading" name="Q1003" id="Q1003">III. Salary</a></b></p></td>
    </tr>
  </table>
  <p class="romanNum">  
  <p class="bodyType"> For each of the following exempt, salaried positions, please report the total number of FTEs employed in each position, the average annual wage and the minimum and maximum annual wages for each job category. Please enter all salary rates in US dollars and cents per year.   
  <p>  
  <table>
      <tr>
        <td width="307" class="bodyType"><div align="center"><b>Job Category </b></div></td>
        <td width="129"><div align="center"><span class="questionHeadling"><a class="questionHeadling" name="Q10031" id="Q10031">Number  of Employees</a></span></div></td>
        <td width="129"><div align="center"><span class="questionHeadling"><a class="questionHeadling" name="Q10032" id="Q10032">Average Annual Salary</a></span></div></td>
        <td width="129"><div align="center"><span class="questionHeadling"><a class="questionHeadling" name="Q10033" id="Q10033">Minimum Annual Salary</a></span></div></td>
        <td width="129"><div align="center"><span class="questionHeadling"><a class="questionHeadling" name="Q10034" id="Q10034">Maximum Annual Salary</a></span></div></td>
      </tr>
      <tr>
        <td><label class="topic-text" for="Q10021_1"><a href="jobs.htm#b" target="_blank">Accounting Manager </a></label></td> 
        <td><div align="center">
          <input type="text" name="Q10031_1" id="Q10031_1" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10032_1" id="Q10032_1" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10033_1" id="Q10033_1" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10034_1" id="Q10034_1" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
      </tr> 
      <tr>
        <td><label class="topic-text" for="Q10021_2"><a href="jobs.htm#c" target="_blank">Business Development Manager</a> </label></td> 
        <td><div align="center">
          <input type="text" name="Q10031_2" id="Q10031_2" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10032_2" id="Q10032_2" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10033_2" id="Q10033_2" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10034_2" id="Q10034_2" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
      </tr> 
      <tr>
        <td><label class="topic-text" for="Q10021_3"><a href="jobs.htm#e" target="_blank">Customer Service Engineer II</a> </label></td> 
        <td><div align="center">
          <input type="text" name="Q10031_3" id="Q10031_3" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10032_3" id="Q10032_3" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10033_3" id="Q10033_3" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10034_3" id="Q10034_3" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
      </tr> 
      <tr>
        <td><label class="topic-text" for="Q10021_4"><a href="jobs.htm#i" target="_blank">IT Manager</a> </label></td> 
        <td><div align="center">
          <input type="text" name="Q10031_4" id="Q10031_4" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10032_4" id="Q10032_4" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10033_4" id="Q10033_4" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10034_4" id="Q10034_4" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
      </tr> 
      <tr>
        <td><label class="topic-text" for="Q10021_5"><a href="jobs.htm#j" target="_blank">Logistics Manager</a></label></td> 
        <td><div align="center">
          <input type="text" name="Q10031_5" id="Q10031_5" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10032_5" id="Q10032_5" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10033_5" id="Q10033_5" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10034_5" id="Q10034_5" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
      </tr> 
      <tr>
        <td><label class="topic-text" for="Q10021_6"><a href="jobs.htm#l" target="_blank">Manager Field Operation</a> </label></td> 
        <td><div align="center">
          <input type="text" name="Q10031_6" id="Q10031_6" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10032_6" id="Q10032_6" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10033_6" id="Q10033_6" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10034_6" id="Q10034_6" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
      </tr> 
      <tr>
        <td><label class="topic-text" for="Q10021_7"><a href="jobs.htm#m" target="_blank">Manager Training </a></label></td> 
        <td><div align="center">
          <input type="text" name="Q10031_7" id="Q10031_7" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10032_7" id="Q10032_7" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10033_7" id="Q10033_7" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10034_7" id="Q10034_7" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
      </tr> 
      <tr>
        <td><label class="topic-text" for="Q10021_8"><a href="jobs.htm#n" target="_blank">Multinational Accounts Manager </a></label></td> 
        <td><div align="center">
          <input type="text" name="Q10031_8" id="Q10031_8" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10032_8" id="Q10032_8" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10033_8" id="Q10033_8" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10034_8" id="Q10034_8" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
      </tr>
      <tr>
        <td class="topic-text"><a href="jobs.htm#o" target="_blank">Network Administrator</a> </td>
        <td>
			<div align="center"><input type="text" name="Q10031_9" id="Q10031_9" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" /></div></td>
        <td><div align="center">
          <input type="text" name="Q10032_9" id="Q10032_9" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10033_9" id="Q10033_9" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10034_9" id="Q10034_9" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
      </tr>
      <tr>
        <td class="topic-text"><a href="jobs.htm#p" target="_blank">Product Manager</a></td>
        <td><div align="center"><input type="text" name="Q10031_10" id="Q10031_10" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" /></div></td>
        <td><div align="center">
          <input type="text" name="Q10032_10" id="Q10032_10" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10033_10" id="Q10033_10" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10034_10" id="Q10034_10" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
      </tr>
      <tr>
        <td class="topic-text"><a href="jobs.htm#q" target="_blank">Project Manager</a> </td>
        <td><div align="center"><input type="text" name="Q10031_11" id="Q10031_11" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" /></div></td>
        <td><div align="center">
          <input type="text" name="Q10032_11" id="Q10032_11" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
</div></td>
        <td><div align="center">
          <input type="text" name="Q10033_11" id="Q10033_11" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10034_11" id="Q10034_11" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
      </tr>
      <tr>
        <td class="topic-text"><a href="jobs.htm#x" target="_blank">Senior Customer Support Engineer</a> </td>
        <td><div align="center"><input type="text" name="Q10031_12" id="Q10031_12" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" /></div></td>
        <td><div align="center">
          <input type="text" name="Q10032_12" id="Q10032_12" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10033_12" id="Q10033_12" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10034_12" id="Q10034_12" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
      </tr>
      <tr>
        <td class="topic-text"><a href="jobs.htm#y" target="_blank">Senior Customer Support Engineer II </a></td>
        <td><div align="center"><input type="text" name="Q10031_13" id="Q10031_13" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" /></div></td>
        <td><div align="center">
          <input type="text" name="Q10032_13" id="Q10032_13" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10033_13" id="Q10033_13" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10034_13" id="Q10034_13" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" />
        </div></td>
      </tr> 
  </table>
  
  
  <p> 
  <table width="100%"  border="1" cellpadding="0" bordercolor="#333333">
    <tr>
      <td height="41" align="center" valign="middle" bgcolor="#CCCCCC"><p> </p>
          <p align="center" class="romanNum"><a name="Q1004" class="style7 question-heading" id="Q1004"><strong>IV. Sales Compensation</strong></a></p></td>
    </tr>
  </table>
  <p>  
  <p class="bodyType"> For each of the following sales positions, please report the total number of FTEs employed in each position and the number of FTEs in each base salary, commission and bonus range. Please list all compensation rates in US dollars and cents per year. <strong><br />
    </strong><br />
  <table> 
      <tr>
        <td height="30" class="questionHeadling">&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td width="307" class="questionHeadling">Job Category</td>
        <td width="104"><div align="center"><span class="questionHeadling"><a class="question-heading" name="Q10041" id="Q10041">Number of Employees</a></span></div></td>
        <td width="98"><div align="center"><span class="questionHeadling"><a class="question-heading" name="Q10042" id="Q10042">Average Annual Salary</a>/<br />
          Bonus/<br />
          Comission</span></div></td>
        <td width="114"><div align="center"><span class="questionHeadling"><a class="question-heading" name="Q10043" id="Q10043">Minimum Annual Salary/<br />
          Bonus/<br />
          Comission</a></span></div></td>
        <td width="109"><div align="center"><span class="questionHeadling"><a class="question-heading" name="Q10044" id="Q10044">Maximum Annual Salary</a>/<br />
          Bonus/<br />
          Comission</span></div></td>
      </tr>
      <tr>
        <td colspan="5" class="questionHeadling"><a href="jobs.htm#r" target="_blank">Regional Sales Manager </a></td>
    </tr>
      <tr> 
        <td class="bodyType"><label id="Q1004_1" class="topic-text" for="Q10043_1">Base Salary</label></td> 
        <td><div align="center">
          <!--<input type="text" name="Q10041_1" id="Q10041_1" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);Total3(Q10041_1,Q10041_2,Q10041_3,Q10041_4);" />-->
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10042_1" id="Q10042_1" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10042_1,Q10042_2,Q10042_3,Q10042_4);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10043_1" id="Q10043_1" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10043_1,Q10043_2,Q10043_3,Q10043_4);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10044_1" id="Q10044_1" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10044_1,Q10044_2,Q10044_3,Q10044_4);" />
        </div></td>
      </tr> 
      <tr> 
        <td class="bodyType"><label id="Q1004_2" class="topic-text" for="Q10043_2">Bonus</label></td> 
        <td><div align="center">
          <!--<input type="text" name="Q10041_2" id="Q10041_2" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);Total3(Q10041_1,Q10041_2,Q10041_3,Q10041_4);" />-->
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10042_2" id="Q10042_2" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10042_1,Q10042_2,Q10042_3,Q10042_4);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10043_2" id="Q10043_2" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10043_1,Q10043_2,Q10043_3,Q10043_4);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10044_2" id="Q10044_2" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10044_1,Q10044_2,Q10044_3,Q10044_4);" />
        </div></td>
      </tr> 
      <tr> 
        <td class="bodyType"><label id="Q1004_3" class="topic-text" for="Q10043_3">Commission</label></td> 
        <td><div align="center">
          <!--<input type="text" name="Q10041_3" id="Q10041_3" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);Total3(Q10041_1,Q10041_2,Q10041_3,Q10041_4);" />-->
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10042_3" id="Q10042_3" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10042_1,Q10042_2,Q10042_3,Q10042_4);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10043_3" id="Q10043_3" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10043_1,Q10043_2,Q10043_3,Q10043_4);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10044_3" id="Q10044_3" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10044_1,Q10044_2,Q10044_3,Q10044_4);" />
        </div></td>
      </tr> 
      <tr> 
        <td class="bodyType"><label id="Q1004_4" class="topic-text" for="Q10043_4">Total Regional Sales Manager</label></td> 
        <td><div align="center">
          <input type="text" name="Q10041_4" id="Q10041_4" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10042_4" id="Q10042_4" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" readonly="true" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10043_4" id="Q10043_4" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" readonly="true" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10044_4" id="Q10044_4" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" readonly="true" />
        </div></td>
      </tr>
	   <tr>
        <td colspan="5" class="questionHeadling"><a href="jobs.htm#s" target="_blank">Sales Administrator </a></td>
       </tr> 
      <tr> 
        <td class="bodyType"><label id="Q1004_5" class="topic-text" for="Q10043_5">Base Salary</label></td> 
        <td><div align="center">
          <!--<input type="text" name="Q10041_5" id="Q10041_5" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />-->
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10042_5" id="Q10042_5" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10042_5,Q10042_6,Q10042_7,Q10042_8);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10043_5" id="Q10043_5" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10043_5,Q10043_6,Q10043_7,Q10043_8);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10044_5" id="Q10044_5" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10044_5,Q10044_6,Q10044_7,Q10044_8);" />
        </div></td>
      </tr> 
      <tr> 
        <td class="bodyType"><label id="Q1004_6" class="topic-text" for="Q10043_6">Bonus</label></td> 
        <td><div align="center">
          <!--<input type="text" name="Q10041_6" id="Q10041_6" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />-->
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10042_6" id="Q10042_6" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10042_5,Q10042_6,Q10042_7,Q10042_8);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10043_6" id="Q10043_6" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10043_5,Q10043_6,Q10043_7,Q10043_8);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10044_6" id="Q10044_6" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10044_5,Q10044_6,Q10044_7,Q10044_8);" />
        </div></td>
      </tr> 
      <tr> 
        <td class="bodyType"><label id="Q1004_7" class="topic-text" for="Q10043_7">Commission</label></td> 
        <td><div align="center">
          <!--<input type="text" name="Q10041_7" id="Q10041_7" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />-->
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10042_7" id="Q10042_7" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10042_5,Q10042_6,Q10042_7,Q10042_8);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10043_7" id="Q10043_7" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10043_5,Q10043_6,Q10043_7,Q10043_8);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10044_7" id="Q10044_7" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10044_5,Q10044_6,Q10044_7,Q10044_8);" />
        </div></td>
      </tr> 
      <tr> 
        <td class="bodyType"><label id="Q1004_8" class="topic-text" for="Q10043_8">Total Sales Administrator </label></td> 
        <td><div align="center">
          <input type="text" name="Q10041_8" id="Q10041_8" maxlength="255" size="10" readonly="True" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10042_8" id="Q10042_8" maxlength="255" size="10" readonly="True"  />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10043_8" id="Q10043_8" maxlength="255" size="10" readonly="True"  />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10044_8" id="Q10044_8" maxlength="255" size="10" readonly="True"  />
        </div></td>
      </tr>
	   <tr>
        <td colspan="5" class="questionHeadling"><a href="jobs.htm#t" target="_blank">Senior Sales Administrator </a></td>
       </tr>
      <tr> 
        <td class="bodyType"><label id="Q1004_9" class="topic-text" for="Q10043_9">Base Salary</label></td> 
        <td><div align="center">
          <!--<input type="text" name="Q10041_9" id="Q10041_9" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />-->
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10042_9" id="Q10042_9" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10042_9,Q10042_10,Q10042_11,Q10042_12);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10043_9" id="Q10043_9" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10043_9,Q10043_10,Q10043_11,Q10043_12);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10044_9" id="Q10044_9" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10044_9,Q10044_10,Q10044_11,Q10044_12);" />
        </div></td>
      </tr> 
      <tr> 
        <td class="bodyType"><label id="Q1004_10" class="topic-text" for="Q10043_10">Bonus</label></td> 
        <td><div align="center">
          <!--<input type="text" name="Q10041_10" id="Q10041_10" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />-->
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10042_10" id="Q10042_10" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10042_9,Q10042_10,Q10042_11,Q10042_12);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10043_10" id="Q10043_10" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10043_9,Q10043_10,Q10043_11,Q10043_12);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10044_10" id="Q10044_10" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10044_9,Q10044_10,Q10044_11,Q10044_12);" />
        </div></td>
      </tr> 
      <tr> 
        <td class="bodyType"><label id="Q1004_11" class="topic-text" for="Q10043_11">Commission</label></td> 
        <td><div align="center">
          <!--<input type="text" name="Q10041_11" id="Q10041_11" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />-->
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10042_11" id="Q10042_11" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10042_9,Q10042_10,Q10042_11,Q10042_12);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10043_11" id="Q10043_11" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10043_9,Q10043_10,Q10043_11,Q10043_12);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10044_11" id="Q10044_11" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10044_9,Q10044_10,Q10044_11,Q10044_12);" />
        </div></td>
      </tr> 
      <tr> 
        <td class="bodyType"><label id="Q1004_12" class="topic-text" for="Q10043_12">Total Senior Sales Administrator </label></td> 
        <td><div align="center">
          <input type="text" name="Q10041_12" id="Q10041_12" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10042_12" id="Q10042_12" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" readonly="true" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10043_12" id="Q10043_12" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" readonly="true" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10044_12" id="Q10044_12" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" readonly="true" />
        </div></td>
      </tr> 
	   <tr>
        <td colspan="5" class="questionHeadling"><a href="jobs.htm#u" target="_blank">Senior Sales Representative</a> </td>
       </tr>
      <tr> 
        <td class="bodyType"><label id="Q1004_13" class="topic-text" for="Q10043_13">Base Salary</label></td> 
        <td><div align="center">
          <!--<input type="text" name="Q10041_13" id="Q10041_13" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />-->
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10042_13" id="Q10042_13" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10042_13,Q10042_14,Q10042_15,Q10042_16);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10043_13" id="Q10043_13" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10043_13,Q10043_14,Q10043_15,Q10043_16);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10044_13" id="Q10044_13" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10044_13,Q10044_14,Q10044_15,Q10044_16);" />
        </div></td>
      </tr> 
      <tr> 
        <td class="bodyType"><label id="Q1004_14" class="topic-text" for="Q10043_14">Bonus</label></td> 
        <td><div align="center">
          <!--<input type="text" name="Q10041_14" id="Q10041_14" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />-->
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10042_14" id="Q10042_14" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10042_13,Q10042_14,Q10042_15,Q10042_16);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10043_14" id="Q10043_14" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10043_13,Q10043_14,Q10043_15,Q10043_16);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10044_14" id="Q10044_14" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10044_13,Q10044_14,Q10044_15,Q10044_16);" />
        </div></td>
      </tr> 
      <tr> 
        <td class="bodyType"><label id="Q1004_15" class="topic-text" for="Q10043_15">Commission</label></td> 
        <td><div align="center">
          <!--<input type="text" name="Q10041_15" id="Q10041_15" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />-->
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10042_15" id="Q10042_15" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10042_13,Q10042_14,Q10042_15,Q10042_16);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10043_15" id="Q10043_15" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10043_13,Q10043_14,Q10043_15,Q10043_16);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10044_15" id="Q10044_15" maxlength="255" size="10" onblur="this.value=outputTwoDecimalsWithComma(trim(this.value), this);Total3(Q10044_13,Q10044_14,Q10044_15,Q10044_16);" />
        </div></td>
      </tr> 
      <tr> 
        <td class="bodyType"><label id="Q1004_16" class="topic-text" for="Q10043_16">Total Senior Sales Representative</label></td> 
        <td><div align="center">
          <input type="text" name="Q10041_16" id="Q10041_16" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10042_16" id="Q10042_16" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" readonly="true" />
        </div></td>
        <td><div align="center">
          <input type="text" name="Q10043_16" id="Q10043_16" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" readonly="true" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q10044_16" id="Q10044_16" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" readonly="true" />
        </div></td>
      </tr> 
  </table> 
  
  
  <p class="questionHeadling">  
  <table width="100%"  border="1" cellpadding="0" bordercolor="#333333">
    <tr>
      <td height="48" align="center" valign="middle" bgcolor="#CCCCCC"><p><b><a name="Q1005" class="question-heading style7" id="Q1005">V. Demographics</a></b></p>
      </td>
    </tr>
  </table>
  <p class="questionHeadling">
  <p class="questionHeadling"> <a class="questionHeadling" name="Q10051"> </a>1. Indicate
    your total sales revenue for your most recent fiscal year:  
  <p class="bodyType">
    <label class="choice-text"><input type="radio" name="Q10051" value="1" id="Q10051_1" /> 
    Less than $10 million</label> <br />  
    <label class="choice-text"> <input type="radio" name="Q10051" value="2" id="Q10051_2" /> 
    $10 million to $24.9 million <br />
    </label> <label class="choice-text"> <input type="radio" name="Q10051" value="3" id="Q10051_3" /> 
    $25 million to $49.9 million</label> <br />    
    <label class="choice-text"> <input type="radio" name="Q10051" value="4" id="Q10051_4" /> 
    $50 million to $99.9 million</label> <br />    
    <label class="choice-text"> <input type="radio" name="Q10051" value="5" id="Q10051_5" /> 
    $100 million to $500 million</label> <br />    
    <label class="choice-text"> <input type="radio" name="Q10051" value="6" id="Q10051_6" /> 
    $500 million or more</label> 
  <p class="questionHeadling"> <a class="question-heading" name="Q10052">2. </a>
    Total number of employees (full-time employees plus part-time equivalent) as of January 1, 2008
  <table> 
      <tr> 
        <td class="bodyType"><label class="topic-text" for="Q10052_1">Salaried</label></td> 
        <td><input type="text" name="Q10052_1" id="Q10052_1" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" /></td> 
      </tr> 
      <tr> 
        <td class="bodyType"><label class="topic-text" for="Q10052_2">Hourly</label></td> 
        <td><input type="text" name="Q10052_2" id="Q10052_2" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" /></td> 
      </tr> 
  </table> 
  <p> <a class="questionHeadling" name="Q10053"> </a>
  <table> 
    <tr> 
      <td><p class="questionHeadling"> <label class="bodyType" for="Q10053_1">3. Total number of facilities included in your data for this survey</label></td> 
        <td><input type="text" name="Q10053_1" id="Q10053_1" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" /></td> 
    </tr> 
  </table> 
  <p class="questionHeadling"> <a class="question-heading" name="Q10054">4. </a>Indicate the region in which all or most of your facilities are located   
  <p>
    <span class="bodyType">
	 <label class="choice-text"> <input type="radio" name="Q10054" value="1" id="Q10054_1" />
       </label>
    </span>European Union and Western Europe <span class="bodyType">
    <label class="choice-text"><br /> 
    </label> 
    <label class="choice-text"><input type="radio" name="Q10054" value="2" id="Q10054_2" /> 
    Non-EU Countries in Central and Eastern Europe  <br />    
    <label class="choice-text">  <input type="radio" name="Q10054" value="3" id="Q10054_3" /> 
 Eastern US (CT, DE, MA, MD, ME, NH, NJ, NY, PA, RI, WV, VT)</label>  
    <br />    
    <label class="choice-text"><input type="radio" name="Q10054" value="4" id="Q10054_4" /> 
    Midwestern US (IA, IL, IN, KS, KY, MI, MN, MO, ND, NE, OH, SD, TN, WI)       <br /> 
    <label class="choice-text">   <input type="radio" name="Q10054" value="5" id="Q10054_5" /> 
    Southern US (AR, AL, FL, GA, LA, MS, NC, OK, SC, TN, TX, VA)  </label>   
    <br />    
    <label class="choice-text">    <input type="radio" name="Q10054" value="6" id="Q10054_6" /> 
    Western US (AZ, CA, CO, ID, MT, NM, NV, OR, UT, WA, WY)    </label> 
	<br>
	<label class="choice-text"><input type="radio" name="Q10054" value="7" id="Q10054_7" /> 
    Eastern Canada (NL, NS, PE, NB, QC, ON)     </label>
	<br />
	<label class="choice-text">    <input type="radio" name="Q10054" value="8" id="Q10054_8" /> 
    Western Canada (MB, SK, AB, BC, NU,NT, TY)     </label>
    </span>
  <p class="questionHeadling"> <a class="question-heading" name="Q10055">5. </a>Are all, part or none of your production and/or maintenance employees unionized?    
  <p> <span class="bodyType">
      <label class="choice-text"> <input type="radio" name="Q10055" value="1" id="Q10055_1" />  All unionized</label> <br />  
      <label class="choice-text"> <input type="radio" name="Q10055" value="2" id="Q10055_2" />  Portion unionized</label> <br />      
      <label class="choice-text"> <input type="radio" name="Q10055" value="3" id="Q10055_3" />  None unionized</label> 
      </span>
  <p class="questionHeadling"> <a class="question-heading" name="Q10056">6. </a>Projected
    average organizational salary budget increase for 2008 (in percent)
  <table> 
      <tr> 
        <td class="bodyType"><label class="topic-text" for="Q10056_1">Salaried positions</label></td> 
        <td><input type="text" name="Q10056_1" id="Q10056_1" maxlength="255" size="10" onblur="this.value=outputPercent(trim(this.value), this);" /></td> 
		<td class="bodyType"></td>
      </tr> 
      <tr> 
        <td class="bodyType"><label class="topic-text" for="Q10056_2">Management positions</label></td> 
        <td><input type="text" name="Q10056_2" id="Q10056_2" maxlength="255" size="10" onblur="this.value=outputPercent(trim(this.value), this);" /></td> 
		<td class="bodyType"></td>
      </tr> 
      <tr> 
        <td class="bodyType"><label class="topic-text" for="Q10056_3">Hourly positions</label></td> 
        <td><input type="text" name="Q10056_3" id="Q10056_3" maxlength="255" size="10" onblur="this.value=outputPercent(trim(this.value), this);" /></td> 
		<td class="bodyType"></td>
      </tr> 
  </table> 
  <p> <a class="questionHeadling" name="Q10057"> </a>  
  <table> 
      <tr> 
        <td><label class="questionHeadling" for="Q10057_1">7. Report the dollars paid
            for benefits in 2007, as a percentage of total wages expended for
            that same year 
        (including paid holidays, vacation days, sick days, all benefit plans, training and tuition reimbursement)</label></td> 
        <td><input type="text" name="Q10057_1" id="Q10057_1" maxlength="255" size="10" onblur="this.value=outputPercent(trim(this.value), this);" /></td> 
		<td class="bodyType"></td>
      </tr> 
  </table> 
  
  
  <p class="romanNum">
  <table width="100%"  border="1" cellpadding="0" bordercolor="#333333">
    <tr>
      <td height="41" align="center" valign="middle" bgcolor="#CCCCCC"><p> </p>
          <p align="center" class="romanNum"> <b><b><a name="Q1006" class="question-heading style7" id="Q1006">VI. Personnel &amp; Compensation Policies</a></b></b></p></td>
    </tr>
  </table>
  <p class="romanNum">    
  <p class="smallerHeadling"> <b>Personnel Policies</b>
  <p class="questionHeadling"> <a class="question-heading" name="Q100601">1. </a>How is overtime handled for salaried employees?
  <p> <label class="choice-text"> 
    <input type="radio" name="Q100601" value="1" id="Q100601_1" /> 
    <span class="bodyType">No overtime is paid </span></label> 
    <!--<span class="bodyType">--><br />    
    <label class="choice-text">
    <input type="radio" name="Q100601" value="2" id="Q100601_2" /> 
    Overtime is compensated at straight time</label> 
    <br />    
    <label class="choice-text">
    <input type="radio" name="Q100601" value="3" id="Q100601_3" /> 
    Overtime is compensated at time and a half</label> 
    <br />    
    <label class="choice-text">
    <input type="radio" name="Q100601" value="4" id="Q100601_4" /> 
    Comp time is offered for time worked in excess of normal hours.</label> 
    </span>
  <p class="questionHeadling"> <a class="question-heading" name="Q100602">2. </a>Do you have a flexible hour program?  
  <p class="bodyType">
    <label class="choice-text">
    <input type="radio" name="Q100602" value="1" id="Q100602_1" /> 
    Yes</label> 
    <br />  
    <label class="choice-text">
    <input type="radio" name="Q100602" value="2" id="Q100602_2" /> 
    No</label> 
  <p class="questionHeadling"> <a class="question-heading" name="Q100603">3. </a>What is your normal probationary period for new employees?
  <p> <label class="choice-text"> 
    <input type="radio" name="Q100603" value="1" id="Q100603_1" /> 
    <span class="bodyType">None</span></label> 
    <span class="bodyType"><br />    
    <label class="choice-text">
    <input type="radio" name="Q100603" value="2" id="Q100603_2" /> 
    30 days </label> 
    <br />    
    <label class="choice-text">
    <input type="radio" name="Q100603" value="3" id="Q100603_3" /> 
    60 days</label> 
    <br />    
    <label class="choice-text">
    <input type="radio" name="Q100603" value="4" id="Q100603_4" /> 
    90 days</label> 
    <br />    
    <label class="choice-text">
    <input type="radio" name="Q100603" value="5" id="Q100603_5" /> 
    180 days</label> 
    <br />    
    <label class="choice-text">
    <input type="radio" name="Q100603" value="6" id="Q100603_6" /> 
    Other</label>
    </span>
  <p class="questionHeadling"> <a class="question-heading" name="Q100604">4. </a>What is the reason for requiring pre-employment physicals examination
  <p> <label class="choice-text"> 
    <input type="radio" name="Q100604" value="1" id="Q100604_1" /> 
    <span class="bodyType">Company policy</span></label> 
    <span class="bodyType"><br />    
    <label class="choice-text">
    <input type="radio" name="Q100604" value="2" id="Q100604_2" /> 
    Customer requirements </label> 
    <br />    
    <label class="choice-text">
<input type="radio" name="Q100604" value="3" id="Q100604_3" />
Don&rsquo;t require pre-employment physicals</label>
    </span>
  <p class="questionHeadling"> <a class="question-heading" name="Q100605">5. </a>What is the reason for conducting drug tests
  <p> <label class="choice-text"> 
    <input type="radio" name="Q100605" value="1" id="Q100605_1" onclick="drugOn()" /> 
    <span class="bodyType">Company policy</span></label> 
    <span class="bodyType"><br />    
    <label class="choice-text">
    <input type="radio" name="Q100605" value="2" id="Q100605_2" onclick="drugOn()" /> 
    Customer requirements </label> 
    <br />    
    <label class="choice-text">
<input type="radio" name="Q100605" value="3" id="Q100605_3" onclick="drugOff()"/>
Don&rsquo;t conduct drug testing (<b> &mdash;&gt;PLEASE SKIP TO Q.7)</b></label>
    </span>
  <p class="questionHeadling"> <a class="question-heading" name="Q100606">6. </a>When are drug tests conducted?  
  <p>
    <label class="choice-text">
    <input type="checkbox" name="Q100606_1" value="1" id="Q100606_1" disabled="true" />
    <span class="bodyType">    As condition of employment</span></label> 
    <span class="bodyType"><br />  
    <label class="choice-text">
    <input type="checkbox" name="Q100606_2" value="1" id="Q100606_2" disabled="true"  /> 
    Randomly</label> 
    <br />    
    <label class="choice-text">
    <input type="checkbox" name="Q100606_3" value="1" id="Q100606_3" disabled="true"  /> 
    For cause </label>
    </span>
    <label class="choice-text"></label> 
  <p class="questionHeadling"> <a class="question-heading" name="Q100607">7. </a>Do you conduct pre-employment security tests/background checks as a result of 
  <p> <label class="choice-text"> 
    <input type="radio" name="Q100607" value="1" id="Q100607_1" /> 
    <span class="bodyType">Company policy</span></label> 
    <span class="bodyType"><br />    
    <label class="choice-text">
    <input type="radio" name="Q100607" value="2" id="Q100607_2" /> 
    Customer requirements </label> 
    <br />    
    <label class="choice-text">
<input type="radio" name="Q100607" value="3" id="Q100607_3" />
Don&rsquo;t conduct pre-employment security tests/background checks</label> 
    </span>
  <p class="questionHeadling"> <a class="question-heading" name="Q100608">8. </a>What types of base salary increases are granted to employees  
  <p>
    <label class="choice-text">
        <input type="checkbox" name="Q100608_1" value="1" id="Q100608_1" /> 
        <span class="bodyType">Merit</span></label> 
    <span class="bodyType"><br />  
    <label class="choice-text">
    <input type="checkbox" name="Q100608_2" value="1" id="Q100608_2" /> 
    Automatic progression</label> 
    <br />    
    <label class="choice-text">
    <input type="checkbox" name="Q100608_3" value="1" id="Q100608_3" /> 
    General </label> 
    <br />    
    <label class="choice-text">
    <input type="checkbox" name="Q100608_4" value="1" id="Q100608_4" /> 
    Cost of living</label> 
    <br />    
    <label class="choice-text">
    <input type="checkbox" name="Q100608_5" value="1" id="Q100608_5" /> 
    Length of service</label> 
    <br />    
    <label class="choice-text">
    <input type="checkbox" name="Q100608_6" value="1" id="Q100608_6" /> 
    Other</label> 
    </span>
  <p class="questionHeadling"> <a class="question-heading" name="Q100609">9. </a>What type of performance appraisal plan do you use 
  <p class="bodyType"> <label class="choice-text"> 
    <input type="radio" name="Q100609" value="1" id="Q100609_1" onclick="performOn();"/> 
    Management by Objectives (MBO)</label> 
    <br />    
    <label class="choice-text">
    <input type="radio" name="Q100609" value="2" id="Q100609_2" onclick="performOn();"/> 
    Forced Choice Questionnaire</label> 
    <br />    
    <label class="choice-text">
    <input type="radio" name="Q100609" value="3" id="Q100609_3" onclick="performOn();"/> 
    Narrative Analysis</label> 
    <br />    
    <label class="choice-text">
    <input type="radio" name="Q100609" value="4" id="Q100609_4" onclick="performOn();"/> 
    Behaviorally Anchored Rating Sales (BARS)</label> 
    <br />    
    <label class="choice-text">
    <input type="radio" name="Q100609" value="5" id="Q100609_5" onclick="performOn();"/> 
    Other</label> 
    <br />    
    <label class="choice-text">
    <input type="radio" name="Q100609" value="6" id="Q100609_6" onclick="performOn();"/> 
    No formal plan</label> 
    <br />    
    <label class="choice-text">
<input type="radio" name="Q100609" value="7" id="Q100609_7" onclick="performOff();" />
Don&rsquo;t link pay to performance appraisal <b>(&mdash;&gt;PLEASE SKIP TO Q.12)</b></label> 
  <p class="questionHeadling"> <a class="question-heading" name="Q100610">10. </a>What is your benchmark date for conducting performance appraisals/salary reviews 
  <p> <label class="choice-text"> 
    <input type="radio" name="Q100610" value="1" id="Q100610_1" disabled="true"   /> 
    <span class="bodyType">Anniversary</span></label> 
    <span class="bodyType"><br />    
    <label class="choice-text">
    <input type="radio" name="Q100610" value="2" id="Q100610_2" disabled="true"  /> 
    Fiscal year end</label> 
    <br />    
    <label class="choice-text">
    <input type="radio" name="Q100610" value="3" id="Q100610_3"  disabled="true" /> 
    Other fixed date</label> 
    </span>
  <p class="questionHeadling"> <a class="question-heading" name="Q100611">11. </a>How frequently do you conduct performance appraisals  
  <p>
    <label class="choice-text">
    <input type="radio" name="Q100611" value="1" id="Q100611_1" disabled="true"  /> 
    <span class="bodyType">Annually</span></label>
    <span class="bodyType"><br />
    <label class="choice-text">
    <input type="radio" name="Q100611" value="2" id="Q100611_2" disabled="true"  /> 
    Quarterly</label> 
    <br />  
    <label class="choice-text">
    <input type="radio" name="Q100611" value="3" id="Q100611_3" disabled="true"  /> 
    Semiannually</label> 
    <br />    
    <label class="choice-text">
    <input type="radio" name="Q100611" value="4" id="Q100611_4" disabled="true"  /> 
    Other</label> 
    </span>
  <p class="questionHeadling"> <a class="question-heading" name="Q100612">12. </a>How frequently are employees eligible for salary increases  
  <p>
    <label class="choice-text">
    <input type="radio" name="Q100612" value="1" id="Q100612_1" />
    <span class="bodyType">    Annually</span></label> 
    <span class="bodyType"><br />  
    <label class="choice-text">
    <input type="radio" name="Q100612" value="2" id="Q100612_2" /> 
    Quarterly</label> 
    <br />    
    <label class="choice-text">
    <input type="radio" name="Q100612" value="3" id="Q100612_3" /> 
    Semiannually</label> 
    <br />    
    <label class="choice-text">
    <input type="radio" name="Q100612" value="4" id="Q100612_4" /> 
    Other</label>
    </span>
  <p class="questionHeadling"> <a class="question-heading" name="Q100612a">13. </a>Do you offer performance-based incentives to your employees?  
  <p>
    <label class="choice-text">
    <input type="radio" name="Q100612a" value="1" id="Q100612a_1" onclick="incent()" />
    <span class="bodyType"> Yes    </span></label>
    <span class="bodyType"><br />  
    <label class="choice-text">
    <input type="radio" name="Q100612a" value="2" id="Q100612a_2" onclick="incent()"/> 
    No</label> 
    <br />  
    </span>
  <p class="questionHeadling"> <a class="question-heading" name="Q100612b">14. </a>Is it a planned incentive?  
  <p>
    <label class="choice-text">
    <input type="radio" name="Q100612b" value="1" id="Q100612b_1"  disabled="true"/>
    <span class="bodyType"> Yes    </span></label>
    <span class="bodyType"><br />  
    <label class="choice-text">
    <input type="radio" name="Q100612b" value="2" id="Q100612b_2"  disabled="true"/> 
    No</label> 
    <br />  
	a. If planned incentive, what is the dollar amount? 
	<input name="Q100612c" id="Q100612c" type="text" size="15" onblur="this.value=outputMoney(trim(this.value), this);"  disabled="true" /><br />
	OR <br />
	b. If planned incentive, what is the percent of the base salary? 
	<input name="Q100612d" id="Q100612d" type="text" size="15" onblur="this.value=outputPercent(trim(this.value), this);"  disabled="true" /><br />
    </span>
  <p class="questionHeadling"> <a class="question-heading" name="Q100612e">15. </a>Is the incentive based on no set limit (no maximum)?  
  <p>
    <label class="choice-text">
    <input type="radio" name="Q100612e" value="1" id="Q100612e_1" disabled="true" />
    <span class="bodyType"> Yes    </span></label>
    <span class="bodyType"><br />  
    <label class="choice-text">
    <input type="radio" name="Q100612e" value="2" id="Q100612e_2"  disabled="true"/> 
    No</label> 
    <br />  
    </span>
  <p class="smallerHeadling"> <b>Shifts and Shift Premiums</b>
  <p class="questionHeadling"> <a class="question-heading" name="Q100613">16. </a>Indicate below, the length of work shifts, in hours per week
  <table> 
      <tr> 
        <td class="bodyType"><label class="topic-text" for="Q100613_1">1<sup>st</sup> shift:</label></td> 
        <td><input type="text" name="Q100613_1" id="Q100613_1" maxlength="255" size="10" onblur="this.value=VI_13(trim(this.value), this);" /></td> 
        <td class="bodyType">hours/week</td>
      </tr> 
      <tr> 
        <td class="bodyType"><label class="topic-text" for="Q100613_2">2<sup>nd</sup> shift:</label></td> 
        <td><input type="text" name="Q100613_2" id="Q100613_2" maxlength="255" size="10" onblur="this.value=VI_13(trim(this.value), this);" /></td> 
        <td class="bodyType">hours/week</td>
      </tr> 
      <tr> 
        <td class="bodyType"><label class="topic-text" for="Q100613_3">3<sup>rd</sup> shift:</label></td> 
        <td><input type="text" name="Q100613_3" id="Q100613_3" maxlength="255" size="10" onblur="this.value=VI_13(trim(this.value), this);" /></td> 
        <td class="bodyType">hours/week</td>
      </tr> 
  </table> 
  <p class="questionHeadling"> <a class="question-heading" name="Q1006141">17. </a>Indicate below the start and stop time of regular work shifts, in hours and minutes. <b><i><br />
  Please use military time/24-hour clock to report (i.e., 8:30 a.m. would be 8:30 and 8:30 pm would be 20:30</i></b>).
  <table> 
       <tr> 
        <td width="131">&nbsp;</td> 
        <td width="103"><p align="center" class="questionHeadling">Start Time</td> 
        <td width="103"><p align="center" class="questionHeadling">Stop Time</td>
      </tr> <tr> 
        <td class="bodyType"><label class="topic-text" for="Q1006141_1">1<sup>st</sup> shift:</label></td> 
        <td><div align="center">
          <input type="text" name="Q1006141_1" id="Q1006141_1" maxlength="255" size="10" onblur="this.value=validateTime(trim(this.value), this);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q1006142_1" id="Q1006142_1" maxlength="255" size="10" onblur="this.value=validateTime(trim(this.value), this);" />
        </div></td>
      </tr> 
      <tr> 
        <td class="bodyType"><label class="topic-text" for="Q1006141_2">2<sup>nd</sup> shift</label></td> 
        <td><div align="center">
          <input type="text" name="Q1006141_2" id="Q1006141_2" maxlength="255" size="10" onblur="this.value=validateTime(trim(this.value), this);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q1006142_2" id="Q1006142_2" maxlength="255" size="10" onblur="this.value=validateTime(trim(this.value), this);" />
        </div></td>
      </tr> 
      <tr> 
        <td class="bodyType"><label class="topic-text" for="Q1006141_3">3<sup>rd</sup> shift</label></td> 
        <td><div align="center">
          <input type="text" name="Q1006141_3" id="Q1006141_3" maxlength="255" size="10" onblur="this.value=validateTime(trim(this.value), this);" />
        </div></td> 
        <td><div align="center">
          <input type="text" name="Q1006142_3" id="Q1006142_3" maxlength="255" size="10" onblur="this.value=validateTime(trim(this.value), this);" />
        </div></td>
      </tr> 
  </table> 
  <p>
  <p class="QuestionHeadling"> <a class="questionHeadling" name="Q1006151">18. </a><span class="questionHeadling">Indicate
    the premium paid to production/maintenance employees 5for night work, 2<sup>nd</sup> shift
    and 3<sup>rd</sup> shift.</span>
  <p> 
  <p> <label class="choice-text"> 
    <input type="checkbox" name="Q1006151_1" value="1" id="Q1006151_1" onclick="VI_15();shift();" /> 
    <span class="bodyType">Don&rsquo;t have an established policy regarding premium pay or differentials &mdash;&gt;<b> PLEASE SKIP TO Q. 20 </b></span></label>  
  <p>
  <table> 
      <tr> <span class="questionHeadling">
        <td width="223"><a class="question-heading" name="Q1006152"> </a></td> 
        <td width="153"><div align="center"><u>Night Work</u></div></td>
        <td width="153"><div align="center"><u>2nd Shift</u></div></td>
		<td width="153"><div align="center"><u>3rd Shift</u> </div></td></span>
	  </tr> 
	  <tr> <span class="bodyType">
	    <td><label class="bodyType" for="Q1006152_1">A cents-per-hour differential of</label></td>
	  <td><div align="center">
  <input type="text" name="Q1006152_1" id="Q1006152_1" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
&cent;/hr</div></td>
	    <td><div align="center">
          <input type="text" name="Q1006153_1" id="Q1006153_1" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        &cent;/hr</div></td>
		<td><div align="center">
	      <input type="text" name="Q1006154_1" id="Q1006154_1" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        &cent;/hr</div></td></span>
	  </tr>
	  <tr> 
	    <td><a class="questionHeadling" name="Q1006153OR2ndShift">OR</a></td>
		<td><div align="center"></div></td>
	    <td><div align="center"></div></td>
		<td><div align="center"></div></td>
	  </tr> 
	  <tr> <span class="bodyType">
	    <td><label class="bodyType" for="Q1006152_2">A percentage differential of of</label></td>
	  <td><div align="center">
	      <input type="text" name="Q1006152_2" id="Q1006152_2" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        %/hr</div></td>
	    <td><div align="center">
          <input type="text" name="Q1006153_2" id="Q1006153_2" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        %/hr</div></td>
		<td><div align="center">
	      <input type="text" name="Q1006154_2" id="Q1006154_2" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        %/hr</div></td></span>
	  </tr> 
	  <tr> 
	    <td><span class="questionHeadling"><a class="question-heading" name="Q1006154OR">OR</a></span></td>
		<td><div align="center"></div></td>
	    <td><div align="center"></div></td>
		<td><div align="center"></div></td>
	  </tr> 
	  <tr> <span class="bodyType">
	    <td><label class="bodyType" for="Q1006152_3">A dollars-per month differential of</label></td>
	  <td><div align="center">
	      <input type="text" name="Q1006152_3" id="Q1006152_3" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        $/mo</div></td>
	    <td><div align="center">
          <input type="text" name="Q1006153_3" id="Q1006153_3" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        $/mo</div></td>
		<td><div align="center">
	      <input type="text" name="Q1006154_3" id="Q1006154_3" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        $/mo</div></td></span>
	  </tr>  
  </table> 
  <p class="questionHeadling"> <a class="question-heading" name="Q100616">19. </a>Do you pay any employees reported in the hourly job classifications on an incentive or piece rate basis?  
  <p class="bodyType">
    <label class="choice-text">
    <input type="radio" name="Q100616" value="1" id="Q100616_1" /> 
    Yes</label> 
    <br />  
    <label class="choice-text">
    <input type="radio" name="Q100616" value="2" id="Q100616_2" /> 
    No</label> 
  <p class="smallerHeadling"><strong> Team Activities </strong>
  <p class="questionHeadling"> <a class="question-heading" name="Q100617">20. </a>Is your workforce team based?  
  <p class="bodyType">
    <label class="choice-text">
    <input type="radio" name="Q100617" value="1" id="Q100617_1" onclick="group();" /> 
    Yes</label> 
    <br />  
    <label class="choice-text">
    <input type="radio" name="Q100617" value="2" id="Q100617_2" onclick="group()" /> 
  No <b>(If No, skip to section VII)</b></label>  
  <p class="questionHeadling"> <a class="question-heading" name="Q100618">21. </a>What percentage of your workforce is working on teams
   
    <input name="Q100618" type="text" value="" size="10" onblur="this.value=outputPercent(trim(this.value), this);" />
  <p class="questionHeadling"> <a class="question-heading" name="Q100619">22. </a>Is there a bonus for working on teams?   
  
  <p>
    <label class="choice-text">
    <span class="bodyType">
    <input type="radio" name="Q100619" value="1" id="Q100619_1" /> 
    Yes</span></label> 
    <span class="bodyType"><br />  
    <label class="choice-text">
  <input type="radio" name="Q100619" value="2" id="Q100619_2" /> 
  No </label>
    </span>
    <label class="choice-text"></label>
    <label class="choice-text"></label>  
  <p class="questionHeadling"> <a class="question-heading" name="Q100620">23. </a>Are there cash or other incentives for working on teams?
  <p> <label class="choice-text"> 
    <span class="bodyType">
    <input type="radio" name="Q100620" value="1" id="Q100620_1" /> 
    Yes</span></label> 
    <span class="bodyType"><br />    
    <label class="choice-text">
    <input type="radio" name="Q100620" value="2" id="Q100620_2" /> 
    No </label>
    </span>
    <label class="choice-text"></label>
    
      
  <p class="romanNum">  
  <table width="100%"  border="1" cellpadding="0" bordercolor="#333333">
    <tr>
      <td height="41" align="center" valign="middle" bgcolor="#CCCCCC"><p> </p>
          <p align="center" class="romanNum style7"><b><a class="question-heading" name="Q1007">VII. Benefits and Other Compensation</a></b> </p></td>
    </tr>
  </table>
  <p class="romanNum">  
  <p class="romanNum"><a class="section-heading" name="Q1007_Sect1" id="Q1007_Sect1"><b>Retirement Benefits</b></a>
  <p> <span class="questionHeadling">1. Indicate which of the listed benefit plans are offered
    by your company for hourly employees, salaried employees and management.</span>
  <table border="0">
      <tr><span class="questionheadling">
        <td width="244">&nbsp;</td>
        <td width="124"><div align="center"><a class="question-heading" name="Q100701_1"><u>Hourly Employees</u></a></div></td>
        <td width="132"><span class="bodyType">
        <div align="center"><a class="question-heading" name="Q100701_2"><u>Salaried Employees</u></a></div></td>
        <td width="116"><span class="bodyType">
        <div align="center"><a class="question-heading" name="Q100701_3"><u>Management</u></a></div></td></span>
      </tr>
      <tr>
        <td><label class="choice-text"><span class="bodyType">Defined Benefit Plan</span></label></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007011_1" value="1" id="Q1007011_1"  />
        </div></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007012_1" value="1" id="Q1007012_1" />
        </div></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007013_1" value="1" id="Q1007013_1" />
        </div></td>
      </tr>
	  <tr>
        <td><label class="choice-text"><span class="bodyType">Defined Contribution Plan</span></label> </td>
        <td><div align="center"></div></td>
        <td><div align="center"></div></td>
        <td><div align="center"></div></td>
      </tr>
      <tr>
        <td><blockquote> <p><span class="bodyType">401(k) Plan</span></p></blockquote></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007011_2" value="1" id="Q1007011_2" />
        </div></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007012_2" value="1" id="Q1007012_2" />
        </div></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007013_2" value="1" id="Q1007013_3" />
        </div></td>
    </tr>
      <tr>
        <td><blockquote>  <p><span class="bodyType">Simplified Employee <br /> Pension (SEP) Plan </span></p> </blockquote></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007011_3" value="1" id="Q1007011_3" />
        </div></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007012_3" value="1" id="Q1007012_3" />
        </div></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007013_3" value="1" id="Q1007013_3" />
        </div></td>
    </tr>
      <tr>
        <td><blockquote> <p ><span class="bodyType"> Money Purchase <br /> Benefit Plan   </span></p> </blockquote></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007011_4" value="1" id="Q1007011_4" />
        </div></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007012_4" value="1" id="Q1007012_4" />
        </div></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007013_4" value="1" id="Q1007013_4" />
        </div></td>
    </tr>
      <tr>
        <td><blockquote><p><span class="bodyType"><label class="choice-text">Other </label></span></p></blockquote></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007011_5" value="1" id="Q1007011_5" />
        </div></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007012_5" value="1" id="Q1007012_5" />
        </div></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007013_5" value="1" id="Q1007013_5" />
        </div></td>
    </tr>
      <tr>
        <td><span class="bodyType">Profit Sharing Plan </span></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007011_6" value="1" id="Q1007011_6" />
        </div></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007012_6" value="1" id="Q1007012_6" />
        </div></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007013_6" value="1" id="Q1007013_6" />
        </div></td>
      </tr>
      <tr>
        <td><span class="bodyType">Employee Stock Ownership Plan </span></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007011_7" value="1" id="Q1007011_7" />
        </div></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007012_7" value="1" id="Q1007012_7" />
        </div></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007013_7" value="1" id="Q1007013_7" />
        </div></td>
      </tr>
      
      <tr>
        <td><span class="bodyType">Combination of plans</span></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007011_8" value="1" id="Q1007011_8" />
        </div></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007012_8" value="1" id="Q1007012_8" />
        </div></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007013_8" value="1" id="Q1007013_8" />
        </div></td>
      </tr>
      <tr>
        <td><span class="bodyType">Other plan</span></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007011_9" value="1" id="Q1007011_9" />
        </div></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007012_9" value="1" id="Q1007012_9" />
        </div></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007013_9" value="1" id="Q1007013_9" />
        </div></td>
      </tr>
      <tr>
        <td><span class="bodyType"> No plan provided </span></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007011_10" value="1" id="Q1007011_10" />
        </div></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007012_10" value="1" id="Q1007012_10" />
        </div></td>
        <td><div align="center">
          <input type="checkbox" name="Q1007013_10" value="1" id="Q1007013_10" />
        </div></td>
      </tr>
  </table>
 
    <p>
      
  <p> <span class="questionHeadling">2. If you have a Defined Benefit Plan</span>
  <p class="bodyType"> <a class="question-heading" name="Q1007021">a. </a>What
    percent of your plan is funded?   
    <input name="Q1007021" type="text" value="" size="10" onblur="this.value=outputPercent(trim(this.value), this);" />
  <p class="bodyType"> <a class="question-heading" name="Q1007022">b. </a>What
    types of base salary increases are granted to employees
  <p> <label class="choice-text"> 
    <input type="radio" name="Q1007022" value="1" id="Q1007022_1" /> 
    <span class="bodyType">Career average pay</span></label> 
    <span class="bodyType"><br />    
    <label class="choice-text">
<input type="radio" name="Q1007022" value="2" id="Q1007022_2" />
Final average pay (including average of last several years&rsquo; pay)</label> 
    </span>
  <p class="bodyType"> <a class="question-heading" name="Q1007023">c. </a>May
    employees make additional voluntary contributions to the plan  
  <p>
    <label class="choice-text">
    <input type="radio" name="Q1007023" value="1" id="Q1007023_1" /> 
    <span class="bodyType">Yes</span></label> 
    <span class="bodyType"><br />  
    <label class="choice-text"> <input type="radio" name="Q1007023" value="2" id="Q1007023_2" /> 
    No</label>
    </span>
  <p> <span class="questionHeadling">3. If you have a Defined Contribution Plan or
    Profit Sharing Plan </span>
  <p class="bodyType"> a. Contribution is based on:
 
  <table border="0">
    <tr>
      <td width="262">&nbsp;</td>
      <td width="117"><div align="center"><span class="questionHeadling"> <a class="question-heading" name="Q10070311"></a><u>Defined<br />
      Contribution Plan</u> </span></div></td>
      <td width="117"><div align="center"><span class="questionHeadling"> <a class="question-heading" name="Q10070312"></a><u>Profit <br />
      Sharing Plan</u></span></div></td>
    </tr>
    <tr>
      <td><span class="bodyType">  <label class="choice-text">Percent of base salary</label>  </span></td>
      <td><div align="center">
        <input type="checkbox" name="Q10070311_1" value="1" id="Q10070311_1" />
      </div></td>
      <td><div align="center">
        <input type="checkbox" name="Q10070312_1" value="1" id="Q10070312_1" />
      </div></td>
    </tr>
    <tr>
      <td><span class="bodyType">Match, based on employee contribution</span></td>
      <td><div align="center">
        <input type="checkbox" name="Q10070311_2" value="1" id="Q10070311_2" />
      </div></td>
      <td><div align="center">
        <input type="checkbox" name="Q10070312_2" value="1" id="Q10070312_2" />
      </div></td>
    </tr>
    <tr>
      <td><span class="bodyType">Age </span> </td>
      <td><div align="center">
        <input type="checkbox" name="Q10070311_3" value="1" id="Q10070311_3" />
      </div></td>
      <td><div align="center">
        <input type="checkbox" name="Q10070312_3" value="1" id="Q10070312_3" />
      </div></td>
    </tr>
    <tr>
      <td><span class="bodyType">Discretionary contributions</span></td>
      <td><div align="center">
        <input type="checkbox" name="Q10070311_4" value="1" id="Q10070311_4" />
      </div></td>
      <td><div align="center">
        <input type="checkbox" name="Q10070312_4" value="1" id="Q10070312_4" />
      </div></td>
    </tr>
    <tr>
      <td><span class="bodyType">Other</span></td>
      <td><div align="center">
        <input type="checkbox" name="Q10070311_5" value="1" id="Q10070311_5" />
      </div></td>
      <td><div align="center">
        <input type="checkbox" name="Q10070312_5" value="1" id="Q10070312_5" />
      </div></td>
    </tr>
  </table>
  
    <p class="bodyType"> <span class="bodyType"> b. What is the maximum amount matched as:</span>
     
    <table> 
  <tr>
  <td width="271">&nbsp;</td>
  <td width="117"> <div align="center"><span class="questionHeadling"><a class="question-heading" name="Q10070321"></a><u>Defined
          <br />
      Contribution</u></span><span class="questionHeadling"><u> Plan</u></span> </div></td>
  <td width="118"><div align="center"><span class="questionHeadling"> <a class="question-heading" name="Q10070322"></a><u>Profit
          <br />
      Sharing Plan</u> </span></div></td>
  </tr>
      <tr> 
        <td class="bodyType">A percent of the employee&rsquo;s salary</td> 
        <td><div align="center">
          <input type="text" name="Q10070321_1" id="Q10070321_1" maxlength="255" size="10" onblur="this.value=outputPercent(trim(this.value), this);" />
        </div></td>
		<td><div align="center">
          <input type="text" name="Q10070322_1" id="Q10070322_1" maxlength="255" size="10" onblur="this.value=outputPercent(trim(this.value), this);" />
	    </div></td> 
      </tr> 
      <tr> 
        <td class="bodyType">A percent of the employee&rsquo;s contribution</td> 
        <td><div align="center">
          <input type="text" name="Q10070321_2" id="Q10070321_2" maxlength="255" size="10" onblur="this.value=outputPercent(trim(this.value), this);" />
        </div></td> 
		<td><div align="center">
          <input type="text" name="Q10070322_2" id="Q10070322_2" maxlength="255" size="10" onblur="this.value=outputPercent(trim(this.value), this);" />
	    </div></td>
      </tr> 
  </table> 
       
    <p class="bodyType"> c. For <b>sales positions</b>, does the amount matched include base salary only or total compensation (base salary, commission and/or bonus): 
    <table border="0">
      <tr>
        <td width="241">&nbsp;</td>
        <td width="179"><div align="center"><span class="questionHeadling"><a class="question-heading" name="Q10070331"></a>Defined Contribution Plan</span></div></td>
        <td width="152"><div align="center"><span class="questionHeadling"><a class="question-heading" name="Q0070332"></a>Profit Sharing Plan</span></div></td>
      </tr>
      <tr>
        <td><span class="questionHeadling"> </span></td>
        <td><input type="radio" name="Q10070331" value="1" id="radio" />
          <span class="bodyType">Base salary </span></td>
        <td><span class="bodyType">
          <label class="choice-text">        </label>
        </span>
          <label class="choice-text">
          <input type="radio" name="Q0070332" value="1" id="radio31" />
          <span class="bodyType">Base salary </span> </label></td>
      </tr>
      <tr>
        <td><span class="bodyType">
        </span></td>
        <td><span class="bodyType">
          <input type="radio" name="Q10070331" value="2" id="radio32" />
Total compensation</span></td>
        <td><span class="bodyType">  <input type="radio" name="Q0070332" value="2" id="radio4" />
Total compensation </span></td>
      </tr>
    </table>
    <p>      <span class="bodyType">   d. What is the initial eligibility period for your program: </span>    
    <table border="0">
      <tr>
        <td width="130">&nbsp;</td>
        <td width="163"><div align="center"><span class="questionHeadling"><a class="question-heading" name="Q10070341"></a><u>Defined<br />
        Contribution Plan</u> </span></div></td>
		<td width="163"><div align="center"><span class="questionHeadling"><a class="question-heading" name="Q10070342"></a><u>Profit<br />
	    Sharing Plan</u></span> </div></td></tr>
      <tr>
        <td><span class="bodyType"> Less than one year</span></td>
        <td><div align="center">
          <input type="radio" name="Q10070341" value="1" id="radio5" />
        </div></td>
		<td><div align="center">
		  <input type="radio" name="Q10070342" value="1" id="radio8" />
		  </div></td>
      </tr>
      <tr>
        <td><span class="bodyType">One year</span></td>
        <td><div align="center">
          <input type="radio" name="Q10070341" value="2" id="radio6" />
        </div></td>
		<td><div align="center">
		  <input type="radio" name="Q10070342" value="2" id="radio9" />
		  </div></td>
      </tr>
      <tr>
        <td><span class="bodyType">More than one year</span></td>
		<td><div align="center">
		  <input type="radio" name="Q10070341" value="3" id="radio7" />
		  </div></td>
        <td><div align="center">
          <input type="radio" name="Q10070342" value="3" id="radio10" />
        </div></td>
      </tr>
    </table>
    <p class="bodyType">e. What is the initial vesting period for your program
      
    <table border="0">
      <tr>
        <td width="260">&nbsp;</td>
        <td width="145"><div align="center"><span class="questionHeadling"><a class="question-heading" name="Q10070351"> </a><u>Defined<br />
          Contribution
            Plan</u></span></div></td>
        <td width="145"><div align="center"><span class="questionHeadling"><a class="question-heading" name="Q10070352"></a><u>Profit<br />
          Sharing
            Plan</u></span></div></td>
      </tr>
      <tr>
        <td><span class="bodyType">100% immediately </span></td>
        <td><div align="center">
          <input type="radio" name="Q10070351" value="1" id="radio11" />
        </div></td>
        <td><div align="center">
          <input type="radio" name="Q10070352" value="1" id="radio17" />
        </div></td>
      </tr>
      <tr>
        <td><span class="bodyType">Graded vesting, 100% by 7 years</span></td>
        <td><div align="center">
          <input type="radio" name="Q10070351" value="2" id="radio12" />
        </div></td>
        <td><div align="center">
          <input type="radio" name="Q10070352" value="2" id="radio18" />
        </div></td>
      </tr>
      <tr>
        <td><span class="bodyType">Graded vesting, 100% by 5 years</span> </td>
        <td><div align="center">
          <input type="radio" name="Q10070351" value="3" id="radio13" />
        </div></td>
        <td><div align="center">
          <input type="radio" name="Q10070352" value="3" id="radio19" />
        </div></td>
      </tr>
      <tr>
        <td><span class="bodyType">No graded vesting, 100% by 7 years</span></td>
        <td><div align="center">
          <input type="radio" name="Q10070351" value="4" id="radio14" />
        </div></td>
        <td><div align="center">
          <input type="radio" name="Q10070352" value="4" id="radio20" />
        </div></td>
      </tr>
      <tr>
        <td><span class="bodyType">No graded vesting, 100% by 5 years</span></td>
        <td><div align="center">
          <input type="radio" name="Q10070351" value="5" id="radio15" />
        </div></td>
        <td><div align="center">
          <input type="radio" name="Q10070352" value="5" id="radio21" />
        </div></td>
      </tr>
      <tr>
        <td><span class="bodyType">Other</span></td>
        <td><div align="center">
          <input type="radio" name="Q10070351" value="6" id="radio16" />
        </div></td>
        <td><div align="center">
          <input type="radio" name="Q10070352" value="6" id="radio22" />
        </div></td>
      </tr>
    </table>
    <p class="smallerHeadling"><a class="section-heading" name="Q1007_Sect2" id="Q1007_Sect2"><b>Life Insurance</b></a>
    <p class="questionheadling"> <span class="questionHeadling"><a name="Q100704">4. </a>When do your employees become eligible for life insurance coverage</span>
 
  <p class="bodyType">
    <label class="choice-text">  <input type="radio" name="Q100704" value="1" id="Q100704_1" onclick="lifeInsurance();" /> We do not offer life insurance <b>(</b><b> SKIP TO Q8)</b></label> 
    <br /> 
    <label class="choice-text"> <input type="radio" name="Q100704" value="2" id="Q100704_2" onclick="lifeInsurance();" /> Immediately</label> 
    <br /> 
    <label class="choice-text"> <input type="radio" name="Q100704" value="3" id="Q100704_3" onclick="lifeInsurance();" /> After one month</label> 
    <br /> 
    <label class="choice-text">  <input type="radio" name="Q100704" value="4" id="Q100704_4" onclick="lifeInsurance();" />   After two months</label> 
    <br />
    <label class="choice-text"> 
    <input type="radio" name="Q100704" value="5" id="Q100704_5" onclick="lifeInsurance();" /> 
    After three months</label> 
    <br /> 
    <label class="choice-text"> 
    <input type="radio" name="Q100704" value="6" id="Q100704_6" onclick="lifeInsurance();" /> 
    After probationary Period</label> 
    <br /> 
    <label class="choice-text"> 
    <input type="radio" name="Q100704" value="7" id="Q100704_7" onclick="lifeInsurance();" /> 
    Other</label> 
  <p class="questionheadling"><span class="questionHeadling"> <a name="Q100705">5. </a>What percentage of the premium for life insurance is paid by the organization </span>
   
  <p class="bodyType">
      <label class="choice-text">
      <input type="radio" name="Q100705" value="1" id="Q100705_1" /> 
      100%</label> 
      <br /> 
      <label class="choice-text"> 
    <input type="radio" name="Q100705" value="2" id="Q100705_2" /> 
    90% - 99%</label> 
      <br /> 
      <label class="choice-text"> 
    <input type="radio" name="Q100705" value="3" id="Q100705_3" /> 
    80% to 89%</label> 
      <br /> 
      <label class="choice-text"> 
    <input type="radio" name="Q100705" value="4" id="Q100705_4" /> 
    70% to 79%</label> 
      <br /> 
      <label class="choice-text"> 
    <input type="radio" name="Q100705" value="5" id="Q100705_5" /> 
    Less than 70%</label> 
  <p class="questionheadling"> <span class="questionHeadling"><a name="Q100706">6. </a>Which of the following are covered by the life insurance program </span>
  
  <p class="bodyType">
        <label class="choice-text">
      <input type="checkbox" name="Q100706_1" value="1" id="Q100706_1" /> 
      Accidental death/dismemberment</label> 
        <br /> 
        <label class="choice-text"> 
    <input type="checkbox" name="Q100706_2" value="1" id="Q100706_2" /> 
    Travel/accident</label> 
        <br /> 
        <label class="choice-text"> 
    <input type="checkbox" name="Q100706_3" value="1" id="Q100706_3" /> 
    Insurance continuance beyond retirement</label> 
  <p class="questionheadling"><span class="questionHeadling"> <a name="Q100707">7. </a>Do you offer supplemental life insurance </span>
  <label class="choice-text">    </label>        
  <p class="bodyType">
          <label class="choice-text">
      <input type="radio" name="Q100707" value="1" id="Q100707_1" /> 
      Yes</label> 
          <br /> 
          <label class="choice-text"> 
    <input type="radio" name="Q100707" value="2" id="Q100707_2" /> 
    No</label> 
  <p class="smallerHeadling"><a class="section-heading" name="Q1007_Sect3" id="Q1007_Sect3"><b>Medical Insurance</b></a>
  <p class="questionheadling"><span class="questionHeadling"> <a name="Q100708">8. </a>When do your employees become eligible for medical insurance coverage  </span>
          
  <p class="bodyType">
          <label class="choice-text"> <input type="radio" name="Q100708" value="1" id="Q100708_1" /> 
      Immediately<br />
          </label> <label class="choice-text"> <input type="radio" name="Q100708" value="2" id="Q100708_2" /> 
    After one month</label>    <br /> 
          <label class="choice-text"> <input type="radio" name="Q100708" value="3" id="Q100708_3" /> 
    After two months</label> <br />
          <label class="choice-text">  <input type="radio" name="Q100708" value="4" id="Q100708_4" /> 
    After three months</label>  <br /> 
          <label class="choice-text">  <input type="radio" name="Q100708" value="5" id="Q100708_5" /> 
    After probationary Period</label>  <br /> 
          <label class="choice-text"> <input type="radio" name="Q100708" value="6" id="Q100708_6" /> 
    Other</label> 
  <p> <span class="questionHeadling">9. Indicate the type of coverage provided for employees and/or dependents
    and the percent of premium paid by the company</span><p>   
  <table border="0">
    <tr>
      <td width="339">&nbsp;</td>
      <td width="117"><div align="center"><span class="questionheadling"><a class="question-heading" name="Q100709_1"></a><u>Employees</u></span></div></td>
      <td width="117"><div align="center"><span class="questionheadling"><a class="question-heading" name="Q100709_2"></a><u>Dependents</u></span></div></td>
	  <td width="117"><div align="center"><span class="questionheadling"><a class="question-heading" name="Q100709_3"></a><u>Premium Paid</u></span></div></td>
    </tr>
    <tr>
      <td><span class="bodyType"><label class="choice-text"> Basic hospitalization/surgical</label></span></td>
      <td><div align="center">
        <input type="checkbox" name="Q1007091_1" value="1" id="Q1007091_1"  />
      </div></td>
      <td><div align="center">
        <input type="checkbox" name="Q1007092_1" value="1"  id="Q1007092_1" />
      </div></td>
	  <td><div align="center">
	    <input type="text" name="Q1007093_1" id="Q1007093_1" maxlength="255" size="10" onblur="this.value=outputPercent(trim(this.value), this);" />
	    </div></td> 
    </tr>
    <tr>
      <td><span class="bodyType"><label class="choice-text">Major medical</label></span></td>
      <td><div align="center">
        <input type="checkbox" name="Q1007091_2" value="1" id="Q1007091_2" />
      </div></td>
      <td><div align="center">
        <input type="checkbox" name="Q1007092_2" value="1" id="Q1007092_2" />
      </div></td>
	  <td><div align="center">
	    <input type="text" name="Q1007093_2" id="Q1007093_2" maxlength="255" size="10" onblur="this.value=outputPercent(trim(this.value), this);" />
	    </div></td> 
    </tr>
    <tr>
      <td><span class="bodyType"><label class="choice-text">HMO (Health Management Organization)</label></span></td>
      <td><div align="center">
        <input type="checkbox" name="Q1007091_3" value="1" id="Q1007091_3" />
      </div></td>
      <td><div align="center">
        <input type="checkbox" name="Q1007092_3" value="1" id="Q1007092_3" />
      </div></td>
	  <td><div align="center">
	    <input type="text" name="Q1007093_3" id="Q1007093_3" maxlength="255" size="10" onblur="this.value=outputPercent(trim(this.value), this);" />
	    </div></td> 
    </tr>
    <tr>
      <td><span class="bodyType"><label class="choice-text">PPO (Paid Provider Organization)</label></span></td>
      <td><div align="center">
        <input type="checkbox" name="Q1007091_4" value="1" id="Q1007091_4" />
      </div></td>
      <td><div align="center">
        <input type="checkbox" name="Q1007092_4" value="1" id="Q1007092_4" />
      </div></td>
	  <td><div align="center">
	    <input type="text" name="Q1007093_4" id="Q1007093_4" maxlength="255" size="10" onblur="this.value=outputPercent(trim(this.value), this);" />
	    </div></td> 
    </tr>
    <tr>
      <td><span class="bodyType"><label class="choice-text">Direct medical expense payments</label></span></td>
      <td><div align="center">
        <input type="checkbox" name="Q1007091_5" value="1" id="Q1007091_5" />
      </div></td>
      <td><div align="center">
        <input type="checkbox" name="Q1007092_5" value="1" id="Q1007092_5" />
      </div></td>
	  <td><div align="center">
	    <input type="text" name="Q1007093_5" id="Q1007093_5" maxlength="255" size="10" onblur="this.value=outputPercent(trim(this.value), this);" />
	    </div></td> 
    </tr>
    <tr>
      <td><span class="bodyType"><label class="choice-text">Health Savings Account (HSA)</label></span></td>
      <td><div align="center">
        <input type="checkbox" name="Q1007091_6" value="1" id="Q1007091_6" />
      </div></td>
      <td><div align="center">
        <input type="checkbox" name="Q1007092_6" value="1" id="Q1007092_6" />
      </div></td>
	  <td><div align="center">
	    <input type="text" name="Q1007093_6" id="Q1007093_6" maxlength="255" size="10" onblur="this.value=outputPercent(trim(this.value), this);" />
	    </div></td> 
    </tr>
    <tr>
      <td><span class="bodyType"><label class="choice-text">Dental</label></span></td>
      <td><div align="center">
        <input type="checkbox" name="Q1007091_7" value="1" id="Q1007091_7" />
      </div></td>
      <td><div align="center">
        <input type="checkbox" name="Q1007092_7" value="1" id="Q1007092_7" />
      </div></td>
	  <td><div align="center">
	    <input type="text" name="Q1007093_7" id="Q1007093_7" maxlength="255" size="10" onblur="this.value=outputPercent(trim(this.value), this);" />
	    </div></td> 
    </tr>
    <tr>
      <td><span class="bodyType"><label class="choice-text">Optical (routine eye exams, eyeglasses, etc.)</label></span></td>
      <td><div align="center">
        <input type="checkbox" name="Q1007091_8" value="1" id="Q1007091_8" />
      </div></td>
      <td><div align="center">
        <input type="checkbox" name="Q1007092_8" value="1" id="Q1007092_8" />
      </div></td>
	  <td><div align="center">
	    <input type="text" name="Q1007093_8" id="Q1007093_8" maxlength="255" size="10" onblur="this.value=outputPercent(trim(this.value), this);" />
	    </div></td> 
    </tr>
    <tr>
      <td><span class="bodyType"><label class="choice-text">Short-term disability</label></span></td>
      <td><div align="center">
        <input type="checkbox" name="Q1007091_9" value="1" id="Q1007091_9" />
      </div></td>
      <td><div align="center">
        <input type="checkbox" name="Q1007092_9" value="1" id="Q1007092_9" />
      </div></td>
	  <td><div align="center">
	    <input type="text" name="Q1007093_9" id="Q1007093_9" maxlength="255" size="10" onblur="this.value=outputPercent(trim(this.value), this);" />
	    </div></td> 
    </tr>
    <tr>
      <td><span class="bodyType"><label class="choice-text"> Long-term disability</label></span></td>
      <td><div align="center">
        <input type="checkbox" name="Q1007091_10" value="1" id="Q1007091_10" />
      </div></td>
      <td><div align="center">
        <input type="checkbox" name="Q1007092_10" value="1" id="Q1007092_10" />
      </div></td>
	  <td><div align="center">
	    <input type="text" name="Q1007093_10" id="Q1007093_10" maxlength="255" size="10" onblur="this.value=outputPercent(trim(this.value), this);" />
	    </div></td> 
    </tr>
    <tr>
      <td>*<span class="bodyType"><label class="choice-text">Flexible Spending Account (Sec 125 Plan)</label></span></td>
      <td><div align="center">
        <input type="checkbox" name="Q1007091_11" value="1" id="Q1007091_11" />
      </div></td>
      <td><div align="center">
        <input type="checkbox" name="Q1007092_11" value="1" id="Q1007092_11" />
      </div></td>
	  <td><div align="center">
	    <input type="text" name="Q1007093_11" id="Q1007093_11" maxlength="255" size="10" onblur="this.value=outputPercent(trim(this.value), this);" />
	    </div></td> 
    </tr>
	<tr>
      <td><span class="bodyType"><label class="choice-text">**Premium Only Plan (Sec. 125 Plan)</label></span></td>
      <td><div align="center">
        <input type="checkbox" name="Q1007091_12" value="1" id="Q1007091_12" />
      </div></td>
      <td><div align="center">
        <input type="checkbox" name="Q1007092_12" value="1" id="Q1007092_12" />
      </div></td>
	  <td><div align="center">
	    <input type="text" name="Q1007093_12" id="Q1007093_12" maxlength="255" size="10" onblur="this.value=outputPercent(trim(this.value), this);" />
	    </div></td> 
    </tr>
  </table>
  
  <p>   
  <p>
      <label class="choice-text">      </label> <i>*Flexible Spending
              Account (Sec 125 Plan)&mdash;Full cafeteria plan that allows employees
              to pay for certain benefits (i.e. child care, unreimbursed medical
              expenses and insurance premiums) with before tax dollars.</i>
  <p> <i>**Premium Only Plan (Sec. 125 Plan)&mdash;A limited flexible plan that allows employees to pay for their portion of employer provided insurance plans with before tax dollars.</i>
  <p class="smallerHeadling"><a class="section-heading" name="Q1007_Sect4" id="Q1007_Sect4"><b>Leave Policies</b></a>
  <p> <span class="questionHeadling"><a name="Q100710">10. Indicate the total number of days your organization will provide in 2008 in each of the following categories to each employee </a></span>
  <table> 
    <tr> 
      <td width="736"><label class="topic-text" for="Q100710_1"><span class="bodyType">Paid holidays (excludes          floating holidays, personal days, vacation days, sick leave and paid
          time off (PTO)days</span></label></td> 
        <td width="116"><div align="center">
          <input type="text" name="Q100710_1" id="Q100710_1" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        </div></td> 
    </tr> 
      <tr> 
        <td><label class="topic-text" for="Q100710_2"><span class="bodyType">Floating holidays</span></label></td> 
        <td><div align="center">
          <input type="text" name="Q100710_2" id="Q100710_2" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        </div></td> 
      </tr> 
      <tr> 
        <td><label class="topic-text" for="Q100710_3"><span class="bodyType">Paid personal days (excludes paid holidays, vacation days, sick leave and paid time off (PTO) day</span></label></td> 
        <td><div align="center">
          <input type="text" name="Q100710_3" id="Q100710_3" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" />
        </div></td> 
      </tr> 
  </table> 
  <p class="questionHeadling"> <a class="question-heading" name="Q100711">11. </a>Which of the following does your company offer to employees
    <label class="choice-text">    </label>  
  <p class="bodyType">
    <label class="choice-text">
    <input type="checkbox" name="Q100711_1" value="1" id="Q100711_1" onclick="pto()"/> 
    Personal Time Off (PTO) Plan</label> 
    <br /> 
    <label class="choice-text"> 
<input type="checkbox" name="Q100711_2" value="1" id="Q100711_22" onclick="vacation()" />    
Vacation</label> 
    <br /> 
    <label class="choice-text"> 
    <input type="checkbox" name="Q100711_3" value="1" id="Q100711_3" onclick="sick()" /> 
    Sick leave</label> 
    <br /> 
    <label class="choice-text"> 
    <input type="checkbox" name="Q100711_4" value="1" id="Q100711_4" /> 
    Maternity/family leave</label> 
  <p class="questionheadling"> <span class="questionHeadling"><a class="question-heading" name="Q1007121">12. </a>If you have a PTO Plan:</span>
  (<b>if you do not have a PTO plan, skip to Q13)</b>  
  <p class="bodyType">a. For what purposes may
    employees use PTO time
    <label class="choice-text">    </label>    
  <p class="bodyType">
      <label class="choice-text">
      <input type="checkbox" name="Q1007121_1" value="1" id="Q1007121_1"  disabled="true"/> 
      Vacation</label>       <br /> 
      <label class="choice-text"> 
    <input type="checkbox" name="Q1007121_2" value="1" id="Q1007121_2"  disabled="true"/> 
    Personal days</label>      <br /> 
      <label class="choice-text"> 
    <input type="checkbox" name="Q1007121_3" value="1" id="Q1007121_3"  disabled="true"/> 
    Sick leave</label>       <br /> 
      <label class="choice-text"> 
    <input type="checkbox" name="Q1007121_4" value="1" id="Q1007121_4"  disabled="true"/> 
    Maternity/family leave</label> 
  <p class="bodyType"> b. Indicate the number of PTO days earned for the years of service listed
    below for hourly employees, salaried employees and management
  <p>  
<table> <span class="bodyType">
      </span>
  <tr>
      <td width="191">&nbsp;</td>
      <td width="140"><span class="bodyType">
          <div align="center"><a class="question-heading" name="Q10071221"> </a><u>Hourly  Employees</u> </div>
      </span></td>
      <td width="69">&nbsp;</td>
      <td width="140"><div align="center"><span class="bodyType"><a class="question-heading" name="Q10071222"></a><u>Salaried  Employees</u> </span></div></td>
      <td width="88">&nbsp;</td>
      <td width="140"><div align="center"><span class="bodyType"><a class="question-heading" name="Q10071223"></a><u>Management</u></span></div></td>
    </tr>
  <span class="bodyType">      </span>
  <tr> 
      <td><span class="bodyType">
        <label class="topic-text" for="Q10071221_1">After one (1) year</label>
      </span></td> 
      <td><span class="bodyType">
        <div align="center">
          <input type="text" name="Q10071221_1" id="Q10071221_1" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);"  disabled="true"/> 
          days</div>
      </span></td> 
      <td>&nbsp;</td>
      <td><div align="center"><span class="bodyType">
          <input type="text" name="Q10071221_2" id="Q10071221_2" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);"  disabled="true"/> 
      days</span></div></td>
      <td>&nbsp;</td>
      <td><div align="center"><span class="bodyType">
          <input type="text" name="Q10071221_3" id="Q10071221_3" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);"  disabled="true"/> 
      days</span></div></td>
    </tr>
  <span class="bodyType">      </span>
  <tr> 
      <td><span class="bodyType">
        <label class="topic-text" for="Q10071221_2">After five (5) year</label>
      </span></td> 
      <td><span class="bodyType">
        <div align="center">
          <input type="text" name="Q10071222_1" id="Q10071222_1" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);"  disabled="true" /> 
          days</div>
      </span></td> 
      <td>&nbsp;</td>
      <td><div align="center"><span class="bodyType">
          <input type="text" name="Q10071222_2" id="Q10071222_2" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);"  disabled="true" /> 
      days</span></div></td>
      <td>&nbsp;</td>
      <td><div align="center"><span class="bodyType">
          <input type="text" name="Q10071222_3" id="Q10071222_3" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);"  disabled="true" /> 
      days</span></div></td>
    </tr>
  <span class="bodyType">      </span>
  <tr> 
      <td><span class="bodyType">
        <label class="topic-text" for="Q10071221_3">After ten (10)</label>
      </span></td> 
      <td><span class="bodyType">
        <div align="center">
          <input type="text" name="Q10071223_1" id="Q10071223_1" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);"  disabled="true"/> 
          days</div>
      </span></td> 
      <td>&nbsp;</td>
      <td><div align="center"><span class="bodyType">
          <input type="text" name="Q10071223_2" id="Q10071223_2" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);" disabled="true" /> 
      days</span></div></td>
      <td>&nbsp;</td>
      <td><div align="center"><span class="bodyType">
          <input type="text" name="Q10071223_3" id="Q10071223_3" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);"  disabled="true" /> 
      days</span></div></td>
    </tr>
  <span class="bodyType">      </span>
  <tr> 
      <td><span class="bodyType">
        <label class="topic-text" for="Q10071221_4">After fifteen (15) years</label>
      </span></td> 
      <td><span class="bodyType">
        <div align="center">
          <input type="text" name="Q10071224_1" id="Q10071224_1" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);"  disabled="true"/> 
          days</div>
      </span></td> 
      <td>&nbsp;</td>
      <td><div align="center"><span class="bodyType">
          <input type="text" name="Q10071224_2" id="Q10071224_2" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);"  disabled="true"/> 
      days</span></div></td>
      <td>&nbsp;</td>
      <td><div align="center"><span class="bodyType">
          <input type="text" name="Q10071224_3" id="Q10071224_3" maxlength="255" size="10" onblur="this.value=outputWholeNumber(trim(this.value), this);"  disabled="true"/> 
      days</span></div></td>
    </tr>
  <span class="bodyType">    </span>
  </table> 
  <p class="bodyType"> <a class="question-heading" name="Q1007123">c. </a>Is PTO time accrued
    or granted in a block at the beginning of the year 
    <label class="choice-text">    </label>  
  <p class="bodyType">
    <label class="choice-text">
    <input type="radio" name="Q1007123" value="1" id="Q1007123_1" disabled="true" />Accrued</label><br /> 
    <label class="choice-text"> 
    <input type="radio" name="Q1007123" value="2" id="Q1007123_2" disabled="true" />Block</label>   
  <p class="bodyType"> <a class="question-heading" name="Q10071241">d. </a>Unused PTO time is
    <label class="choice-text">    </label>  
  <p class="bodyType">
    <label class="choice-text">
    <input type="checkbox" name="Q10071241_1" value="1" id="Q10071241_1" disabled="true" /> 
    Canceled</label> 
    <br /> 
    <label class="choice-text"> 
    <input type="checkbox" name="Q10071241_2" value="1" id="Q10071241_2" disabled="true" /> 
    Paid for at the end of the year</label> 
    <br /> 
    <label class="choice-text"> 
    <input type="checkbox" name="Q10071241_3" value="1" id="Q10071241_3" disabled="true"/> 
    Carried over to the following year</label> 
  <p><span class="questionHeadling">13. Vacation Leave. If all vacation days are included in PTO days, skip
    to question 14.</span>
  <p class="bodyType">    a. Indicate the number of vacation days earned for the years of
    service listed below for hourly employees, salaried employees and management: 
  <table> 
      <tr><span class="questionHeadling">
        <td width="189">&nbsp;</td>
        <td width="130"> <div align="center"><a class="question-heading" name="Q10071311"></a><u>Hourly Employees </u></div></td>
        <td width="80">&nbsp;</td>
        <td width="130"><div align="center"><a class="question-heading" name="Q10071312"></a><u>Salaried Employees</u> </div></td>
        <td width="80">&nbsp;</td>
        <td width="130"><div align="center"><a class="question-heading" name="Q10071313"></a><u>Management</u> </div></td></span>
      </tr>
    <tr> 
      <td><span class="bodyType">
          <label class="topic-text" for="Q10071311_1">After one (1) year</label>
      </span></td> 
      <td><span class="bodyType">
          <div align="center">
            <input type="text" name="Q10071311_1" id="Q10071311_1" maxlength="255" size="10" /> 
            days</div>
      </span></td> 
      <td>&nbsp;</td>
      <td><div align="center"><span class="bodyType">
          <input type="text" name="Q10071312_1" id="Q10071312_1" maxlength="255" size="10" /> 
      days</span></div></td>
      <td>&nbsp;</td>
      <td><div align="center"><span class="bodyType">
          <input type="text" name="Q10071313_1" id="Q10071313_1" maxlength="255" size="10" /> 
      days</span></div></td>
    </tr>
     
    <tr> 
      <td><span class="bodyType">
          <label class="topic-text" for="Q10071311_2">After five (5) year</label>
      </span></td> 
      <td><span class="bodyType">
          <div align="center">
            <input type="text" name="Q10071311_2" id="Q10071311_2" maxlength="255" size="10" /> 
            days</div>
      </span></td> 
      <td>&nbsp;</td>
      <td><div align="center"><span class="bodyType">
          <input type="text" name="Q10071312_2" id="Q10071312_2" maxlength="255" size="10" /> 
      days</span></div></td>
      <td>&nbsp;</td>
      <td><div align="center"><span class="bodyType">
          <input type="text" name="Q10071313_2" id="Q10071313_2" maxlength="255" size="10" /> 
      days</span></div></td>
    </tr>
     
    <tr> 
      <td><span class="bodyType">
          <label class="topic-text" for="Q10071311_3">After ten (10)</label>
      </span></td> 
      <td><span class="bodyType">
          <div align="center">
            <input type="text" name="Q10071311_3" id="Q10071311_3" maxlength="255" size="10" /> 
            days</div>
      </span></td> 
      <td>&nbsp;</td>
      <td><div align="center"><span class="bodyType">
          <input type="text" name="Q10071312_3" id="Q10071312_3" maxlength="255" size="10" /> 
      days</span></div></td>
      <td>&nbsp;</td>
      <td><div align="center"><span class="bodyType">
          <input type="text" name="Q10071313_3" id="Q10071313_3" maxlength="255" size="10" /> 
      days</span></div></td>
    </tr>
      
    <tr> 
      <td><span class="bodyType">
          <label class="topic-text" for="Q10071311_4">After fifteen (15) years</label>
      </span></td> 
      <td><span class="bodyType">
          <div align="center">
            <input type="text" name="Q10071311_4" id="Q10071311_4" maxlength="255" size="10" /> 
            days</div>
      </span></td> 
      <td>&nbsp;</td>
      <td><div align="center"><span class="bodyType">
          <input type="text" name="Q10071312_4" id="Q10071312_4" maxlength="255" size="10" /> 
      days</span></div></td>
      <td>&nbsp;</td>
      <td><div align="center"><span class="bodyType">
          <input type="text" name="Q10071313_4" id="Q10071313_4" maxlength="255" size="10" /> 
      days</span></div></td>
    </tr>
      
  </table> 
 
  <p class="bodyType"> <a class="question-heading" name="Q1007132">b. </a>Is Vacation accrued
    or granted in a block at the beginning of the year
  <p class="bodyType"> <label class="choice-text"> 
    <input type="radio" name="Q1007132" value="1" id="Q1007132_1" /> 
    Accrued</label> 
    <br /> 
    <label class="choice-text"> 
    <input type="radio" name="Q1007132" value="2" id="Q1007132_2" /> 
    Block</label> 
  <p class="bodyType"> <a class="question-heading" name="Q10071331">c. </a>Unused vacation time
    is
  <table><span class="bodyType">
    <tr>
      <td width="247"> <label class="choice-text"> <input type="checkbox" name="Q10071331_1" value="1" id="Q10071331_1" /> Canceled</label></td>
      <td width="63">&nbsp; </td>
	  <td width="219">&nbsp;</td>
      <td width="147">&nbsp;</td>
    </tr>
    <tr>
      <td><label class="choice-text"> <input type="checkbox" name="Q10071331_2" value="1" id="Q10071331_23" /> Paid for at the end of the year</label></td>
      <td width="63">&nbsp;</td>
	   <td>Number of days Paid </td>
      <td><input type="text" name="Q10071332" id="Q10071332" maxlength="255" size="10" /> days</td>
    </tr>
    <tr>
      <td><label class="choice-text"><input type="checkbox" name="Q10071331_3" value="1" id="Q10071331_33" /> Carried over to the following year</label></td>
      <td width="63">&nbsp;</td>
	  <td>Number of days Carried over </td>
      <td><input type="text" name="Q10071333" id="Q10071333" maxlength="255" size="10" /> days</td>
    </tr></span>
  </table>
 
  <p><span class="questionHeadling">14. Sick Leave. If all sick days are included in PTO days, skip to question
    15. </span></p>
  <p class="bodyType"> <a class="question-heading" name="Q1007141">a. </a>Indicate how many paid
    sick days per year you provide to employees 
    <label class="choice-text">    </label>    
  <p class="bodyType">
      <label class="choice-text">
      <input type="radio" name="Q1007141" value="1" id="Q1007141_1" /> 
      None</label> 
      <br /> 
      <label class="choice-text"> 
    <input type="radio" name="Q1007141" value="2" id="Q1007141_2" /> 
    Some but less than five days</label> 
      <br /> 
      <label class="choice-text"> 
    <input type="radio" name="Q1007141" value="3" id="Q1007141_3" /> 
    Five days</label> 
      <br /> 
      <label class="choice-text"> 
    <input type="radio" name="Q1007141" value="4" id="Q1007141_4" /> 
    Six days</label> 
      <br /> 
      <label class="choice-text"> 
    <input type="radio" name="Q1007141" value="5" id="Q1007141_5" /> 
    Seven days</label> 
      <br /> 
      <label class="choice-text"> 
    <input type="radio" name="Q1007141" value="6" id="Q1007141_6" /> 
  Eight days</label> 
      <br />      
      <label class="choice-text"> 
    <input type="radio" name="Q1007141" value="7" id="Q1007141_7" /> 
    Nine days</label> 
      <br /> 
      <label class="choice-text"> 
    <input type="radio" name="Q1007141" value="8" id="Q1007141_8" /> 
    Over ten days</label> 
  
  <p class="bodyType"> <a class="question-heading" name="Q10071421">b. </a>Unused sick leave
    time is
    <label class="choice-text">    </label>    
  <p class="bodyType">
      <label class="choice-text">
      <input type="checkbox" name="Q10071421_1" value="1" id="Q10071421_1" /> 
      Canceled</label> 
      <br /> 
      <label class="choice-text"> 
    <input type="checkbox" name="Q10071421_2" value="1" id="Q10071421_2" /> 
    Paid for at the end of the year</label> 
      <br /> 
      <label class="choice-text"> 
    <input type="checkbox" name="Q10071421_3" value="1" id="Q10071421_3" /> 
  Carried over to the following year</label>   
  <p class="QuestionHeadling"><span class="questionHeadling">15. Tuition Reimbursement </span>  
  <p class="bodyType"> <a name="Q1007151">a. </a>For which continuing
    education related expenses does your company offer reimbursement
    <label class="choice-text">    </label>      
  <p class="bodyType">
        <label class="choice-text">
  <input type="radio" name="Q1007151" value="1" id="Q1007151_1"  onclick="tuition()"/>
  Coursework directly related to the employee&rsquo;s position and duties</label> 
        <br /> 
        <label class="choice-text"> 
    <input type="radio" name="Q1007151" value="2" id="Q1007151_2" onclick="tuition()"/> 
    Coursework that is not directly related to the employee&rsquo;s position and duties</label>
        <br /> 
        <label class="choice-text"> 
    <input type="radio" name="Q1007151" value="3" id="Q1007151_3" onclick="tuition()"> 
    Classroom expenses only, i.e., books, lab fees</label> 
        <br /> 
        <label class="choice-text"> 
    <input type="radio" name="Q1007151" value="4" id="Q1007151_4" onclick="tuition()"/> 
    No tuition reimbursement offered. (<b>skip to Section VIII</b>)</label> 
        
  <p class="bodyType"> <a class="question-heading" name="Q1007152">b. </a>What is the dollar
    cap on tuition reimbursement for each of the following 
  <table> <span class="bodyType">
      <tr> 
        <td width="159"><label class="topic-text" for="Q1007152_1">Hourly employees </label></td> 
		<td width="10">&nbsp;</td>
        <td width="113"><input type="text" name="Q1007152_1" id="Q1007152_1" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" disabled="true" /></td> 
      </tr> 
      <tr> 
        <td><label class="topic-text" for="Q1007152_2">Salaried employees</label></td> 
		<td>&nbsp;</td>
        <td><input type="text" name="Q1007152_2" id="Q1007152_2" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" disabled="true" /></td> 
      </tr> 
      <tr> 
        <td><label class="topic-text" for="Q1007152_3">Management:</label></td>
		<td>&nbsp;</td> 
        <td><input type="text" name="Q1007152_3" id="Q1007152_3" maxlength="255" size="10" onblur="this.value=outputMoney(trim(this.value), this);" disabled="true" /></td> 
      </tr> </span>
  </table> 
  <p class="bodyType"><a class="question-heading" name="Q1007153">c. When is reimbursement paid</a></p>
  <p class="bodyType">
    <label class="choice-text"><input type="radio" name="Q1007153" value="1" id="Q1007153_1"  disabled="true"/>At the start of the
    course or term </label><br />  
    <label class="choice-text">    <input type="radio" name="Q1007153" value="2" id="Q1007153_2"  disabled="true"/> 
    At completion of the course or term</label> <br /> 
    <label class="choice-text">  <input type="radio" name="Q1007153" value="3" id="Q1007153_3"  disabled="true"/> 
    Half at start, remainder at completion</label>  <br /> 
    <label class="choice-text"> <input type="radio" name="Q1007153" value="4" id="Q1007153_4"  disabled="true"/> 
    Other</label> 
  <p class="bodyType"> <a class="question-heading" name="Q1007154">d. </a>What grade, if any,
    is required for reimbursement 
    <label class="choice-text">    </label>    
  <p class="bodyType">
      <label class="choice-text">
      <input type="radio" name="Q1007154" value="1" id="Q1007154_1"  disabled="true"/> 
      No minimum grade is required for reimbursement</label> 
      <br /> 
      <label class="choice-text"> 
    <input type="radio" name="Q1007154" value="2" id="Q1007154_2"  disabled="true"/> 
    A</label> 
      <br /> 
      <label class="choice-text"> 
    <input type="radio" name="Q1007154" value="3" id="Q1007154_3"  disabled="true"/> 
    B or better</label> 
      <br /> 
      <label class="choice-text"> 
    <input type="radio" name="Q1007154" value="4" id="Q1007154_4"  disabled="true"/> 
    C or better</label> 
      <br /> 
      <label class="choice-text"> 
    <input type="radio" name="Q1007154" value="5" id="Q1007154_5"  disabled="true"/> 
    Other</label> 
  <p class="bodyType"> <a class="question-heading" name="Q10071551">e. </a>Do you require employees
    who apply for tuition reimbursement to sign a continuing employment agreement
  <p class="bodyType">
        <label class="choice-text">
      <input type="radio" name="Q10071551" value="1" id="Q10071551_1"  disabled="true" onclick="tuition2();"/> 
      Yes</label> 
        <br /> 
        <label class="choice-text"> 
    <input type="radio" name="Q10071551" value="2" id="Q10071551_2"  disabled="true" onclick="tuition2();"/> 
    No</label>
    (<b>If no, please go</b> <b>to section VIII)</b>
    <label class="choice-text"> </label>
  <p class="bodyType"> <a class="question-heading" name="Q10071552">f. </a>If yes, how long is the required term of continued employment 
     <label class="choice-text">    </label>      
  <p class="bodyType">
        <label class="choice-text">
      <input type="radio" name="Q10071552" value="1" id="Q10071552_1"  disabled="true"/> 
      Six months</label> 
        <br /> 
        <label class="choice-text"> 
    <input type="radio" name="Q10071552" value="2" id="Q10071552_2"  disabled="true"/> 
    One Year</label> 
        <br /> 
        <label class="choice-text"> 
    <input type="radio" name="Q10071552" value="3" id="Q10071552_3"  disabled="true"/> 
    Eighteen Months</label> 
        <br /> 
        <label class="choice-text"> 
    <input type="radio" name="Q10071552" value="4" id="Q10071552_4"  disabled="true"/> 
    Two Years</label> 
        <br /> 
        <label class="choice-text"> 
    <input type="radio" name="Q10071552" value="5" id="Q10071552_5"  disabled="true"/> 
    Other</label>
    
    
  <p class="romanNum">  
  <table width="100%"  border="1" cellpadding="0" bordercolor="#333333">
    <tr>
      <td height="41" align="center" valign="middle" bgcolor="#CCCCCC"><p> </p>
          <p align="center" class="romanNum style7"><b><a class="question-heading" name="Q1008" id="Q1008">VIII. Sales Compensation Structure</a></b> </p></td>
    </tr>
  </table>
  <p class="romanNum"><a class="question-heading" name="Q100801"><span class="style25">1</span>. </a><span class="questionHeadling">What does total compensation for your sales staff include</span>  
  <p class="bodyType">
          <label class="choice-text">
      <input type="checkbox" name="Q100801_1" value="1" id="Q100801_1" /> 
      Base Salary</label> 
          <br /> 
          <label class="choice-text"> 
    <input type="checkbox" name="Q100801_2" value="1" id="Q100801_2" onclick="commission()" /> 
    Commission</label> 
          <br /> 
          <label class="choice-text"> 
    <input type="checkbox" name="Q100801_3" value="1" id="Q100801_3" onclick="bonus()"/> 
    Bonus</label> 
          <br /> 
          <label class="choice-text"> 
    <input type="checkbox" name="Q100801_4" value="1" id="Q100801_4" /> 
    Other</label> 
  <p class="questionHeadling"> 2. If you pay commission:  
  <p class="bodyType">    <a class="question-heading" name="Q1008021">a. </a>Commission
        payments are based on:
    <br />              
    <label class="choice-text">
    <input type="checkbox" name="Q1008021_1" value="1" id="Q1008021_1" disabled="true" /> 
    Sales dollars on orders</label> 
            <br /> 
            <label class="choice-text"> 
      <input type="checkbox" name="Q1008021_2" value="1" id="Q1008021_2" disabled="true" /> 
    Gross margin dollars</label> 
            <br /> 
            <label class="choice-text"> 
      <input type="checkbox" name="Q1008021_3" value="1" id="Q1008021_3" disabled="true" /> 
    Order profitability</label> 
            <br /> 
            <label class="choice-text"> 
      <input type="checkbox" name="Q1008021_4" value="1" id="Q1008021_4"  disabled="true" /> 
    Sales dollars on shipments</label> 
            <br />
            <label class="choice-text"> 
      <input type="checkbox" name="Q1008021_5" value="1" id="Q1008021_5"  disabled="true" /> 
    Sales volume quotas</label> 
            <br /> 
            <label class="choice-text"> 
      <input type="checkbox" name="Q1008021_6" value="1" id="Q1008021_6"  disabled="true"/> 
    New business</label> 
            <br /> 
            <label class="choice-text"> 
      <input type="checkbox" name="Q1008021_7" value="1" id="Q1008021_7"  disabled="true"/> 
    Other</label> 
  <p class="bodyType"> <a class="question-heading" name="Q1008022">b. </a>Commission payments
            are <b>primarily</b> based on:<br />
    <label class="choice-text">
    <input type="radio" name="Q1008022" value="1" id="Q1008022_1" disabled="true"/> 
    Sales dollars on orders<br />
    </label> <label class="choice-text"> 
    <input type="radio" name="Q1008022" value="2" id="Q1008022_2" disabled="true" /> 
    Gross margin dollars<br />
    </label> <label class="choice-text"> 
    <input type="radio" name="Q1008022" value="3" id="Q1008022_3" disabled="true" /> 
    Order profitability</label> 
    <br /> 
    <label class="choice-text"> 
    <input type="radio" name="Q1008022" value="4" id="Q1008022_4" disabled="true" /> 
    Sales dollars on shipments</label> 
    <br /> 
    <label class="choice-text"> 
    <input type="radio" name="Q1008022" value="5" id="Q1008022_5" disabled="true" /> 
    Sales volume quotas</label> 
    <br /> 
    <label class="choice-text"> 
    <input type="radio" name="Q1008022" value="6" id="Q1008022_6" disabled="true" /> 
    New business</label> 
    <br /> 
    <label class="choice-text"> 
    <input type="radio" name="Q1008022" value="7" id="Q1008022_7" disabled="true" /> 
    Other</label> 
  <p class="questionHeadling"> 3. If you pay bonus  
  <p class="bodyType">    <a class="question-heading" name="Q1008031">a. </a>Bonus
    Payments are based on: <br />
    <label class="choice-text">
    <input type="checkbox" name="Q1008031_1" value="1" id="Q1008031_1" disabled="true" /> 
    <span class="bodyType">Individual performance</span></label> 
    <span class="bodyType"><br />  
    <label class="choice-text">
    <input type="checkbox" name="Q1008031_2" value="1" id="Q1008031_2" disabled="true"  /> 
    Sales department performance</label> 
    <br />    
    <label class="choice-text">
    <input type="checkbox" name="Q1008031_3" value="1" id="Q1008031_3" disabled="true"  /> 
    Overall company performance</label> 
    <br />  
    <label class="choice-text">
    <input type="checkbox" name="Q1008031_4" value="1" id="Q1008031_4" disabled="true"  /> 
    Other</label> 
    </span>
  <p class="bodyType"> <a class="question-heading" name="Q1008032">b. </a>Bonus
    payments are <em><b><u>primarily</u> </b></em>based on<br />
    <label class="choice-text">
    <input type="radio" name="Q1008032" value="1" id="Q1008032_1" disabled="true"  /> 
    Individual performance</label> 
    <br />  
    <label class="choice-text">
    <input type="radio" name="Q1008032" value="2" id="Q1008032_2" disabled="true"  /> 
    Sales department performance</label> 
    <br />    
    <label class="choice-text">
    <input type="radio" name="Q1008032" value="3" id="Q1008032_3" disabled="true"  /> 
    Overall company performance</label> 
    <br />    
    <label class="choice-text">
    <input type="radio" name="Q1008032" value="4" id="Q1008032_4" disabled="true"  /> 
    Other</label> 
  <p> <span class="questionHeadling"><a class="question-heading" name="Q100804">4. </a>Which
      business expenses are covered for your sales force
  </span>    
    <label class="choice-text">    </label>  
  <p>
    <label class="choice-text">
  <input type="checkbox" name="Q100804_1" value="1" id="Q100804_1" />
  <span class="bodyType"> Car&mdash;company owned</span></label> 
    <span class="bodyType"><br /> 
    <label class="choice-text"> 
    <input type="checkbox" name="Q100804_2" value="1" id="Q100804_2" />
    Car&mdash;company leased</label> 
    <br /> 
    <label class="choice-text"> 
    <input type="checkbox" name="Q100804_3" value="1" id="Q100804_3" /> 
    Mileage reimbursement</label> 
    <br /> 
    <label class="choice-text"> 
    <input type="checkbox" name="Q100804_4" value="1" id="Q100804_4" /> 
    Lodging expenses</label> 
    <br /> 
    <label class="choice-text"> 
    <input type="checkbox" name="Q100804_5" value="1" id="Q100804_5" /> 
    Entertainment expenses</label> 
    <br /> 
    <label class="choice-text"> 
    <input type="checkbox" name="Q100804_6" value="1" id="Q100804_6" /> 
    Cellular phone</label> 
    <br /> 
    <label class="choice-text"> 
    <input type="checkbox" name="Q100804_7" value="1" id="Q100804_7" /> 
    Pager</label> 
    <br /> 
    <label class="choice-text"> 
    <input type="checkbox" name="Q100804_8" value="1" id="Q100804_8" /> 
    Laptop computer</label> 
    <br /> 
    <label class="choice-text"> 
    <input type="checkbox" name="Q100804_9" value="1" id="Q100804_9" /> 
    Remote access to company computer</label> 
    <br /> 
    <label class="choice-text"> 
    <input type="checkbox" name="Q100804_10" value="1" id="Q100804_10" /> 
    Home desktop computer</label> 
    <br /> 
    <label class="choice-text"> 
    <input type="checkbox" name="Q100804_11" value="1" id="Q100804_11" /> 
  Home fax machine</label>
    <br />
    <label class="choice-text">
    <input type="checkbox" name="Q100804_12" value="1" id="Q100804_12" /> 
    Home photocopier</label> 
    </span>
    
  <p>  
  <p>
 
  <table width="100%"  border="1" cellpadding="0" bordercolor="#333333">
    <tr>
      <td height="54" align="center" valign="middle" bgcolor="#CCCCCC"><p> </p>
          <p align="center" class="romanNum style7"><b><a class="question-heading" name="Q1008" id="Q1008">Report Distribution and Comments</a></b> </p></td>
    </tr>
  </table>
  <p> </p>
  <p> </p>
  <table width="800" border="0" align="center" cellspacing="0">
    <tr valign="middle">
      <td>&nbsp;</td>
      <td height="35" colspan="2">If you have colleagues in your facility who would benefit from receiving this report please provide us with their e-mail address. We will add them to the distribution list.</td>
    </tr>
    <tr valign="middle">
      <td width="83">&nbsp;</td>
      <td width="267" height="35"><blockquote>
          <label class="topic-text" for="label8">1. E-mail Address</label>
      </blockquote></td>
      <td width="444" valign="top"><input name="Q1170_1" type="text" class="ee124" id="Q1170_1" style="text-align: left;" tabindex="443"  onkeypress="return noenter()" size="40" maxlength="255" /></td>
    </tr>
    <tr valign="middle">
      <td>&nbsp;</td>
      <td height="35"><blockquote>
          <label class="topic-text" for="label9">2. E-mail Address</label>
      </blockquote></td>
      <td valign="top"><input  name="Q1170_2" type="text" class="ee124" id="Q1170_2" style="text-align: left;" tabindex="444"  onkeypress="return noenter()" size="40" maxlength="255" /></td>
    </tr>
    <tr valign="middle">
      <td>&nbsp;</td>
      <td height="35"><blockquote>
          <label class="topic-text" for="label10">3. E-mail Address</label>
      </blockquote></td>
      <td valign="top"><input name="Q1170_3" type="text" class="ee124" id="Q1170_3" style="text-align: left;" tabindex="445"  onkeypress="return noenter()" size="40" maxlength="255" /></td>
    </tr>
    <tr valign="middle">
      <td>&nbsp;</td>
      <td height="35"><blockquote>
          <label class="topic-text" for="label11">4. E-mail Address</label>
      </blockquote></td>
      <td valign="top"><input name="Q1170_4" type="text" class="ee124" id="Q1170_4" style="text-align: left;" tabindex="446"  onkeypress="return noenter()" size="40" maxlength="255" /></td>
    </tr>
    <tr valign="middle">
      <td><a name="18" id="18"></a></td>
      <td height="35"><blockquote>
          <label class="topic-text" for="label12">5. E-mail Address</label>
      </blockquote></td>
      <td valign="top"><input name="Q1170_5" type="text" class="ee124" id="Q1170_5" style="text-align: left;" tabindex="447"  onkeypress="return noenter()" size="40" maxlength="255" /></td>
    </tr>
  </table>
  <p> </p>
  <table width="796" border="0" align="center" cellpadding="0">
    <tr>
      <td width="78" height="60">&nbsp;</td>
      <td width="712">Please use the space below to write any comments, notes or special needs related to this survey: </td>
    </tr>
    <tr>
      <td>&nbsp;</td>
      <td><div align="center">
          <textarea name="Q1180" cols="75" rows="8" class="ee128" tabindex="448"></textarea>
      </div></td>
    </tr>
  </table>
  <p> </p>
  <p>
    <input type="hidden" name="PdcProjectID" value="WAGE PCBs" /> 
    <input type="hidden" name="PdcAdminEmlAdr" value="c3VydmV5c0BpcGMub3Jn" />
    <input type="hidden" name="PdcEmailAddress" value="c3VydmV5c0BpcGMub3Jn" />
    <input type="hidden" name="PdcRspEmlAdrQstHdg" value="Q1001_5" />
    <input type="hidden" name="PdcRspEmlSub" value="Assembly Equipment Industry Wage Survey" />
    <input type="hidden" name="PdcSurveyName" value="/survey/wageems" /> 
    <input type="hidden" name="PdcCurrentPage" value="/survey/wagepcb.htm" /> 
    <input type="hidden" name="PdcButtonPressed" value="" /> 
    <input type="hidden" name="PdcPageData001" value="Q1001_1|T;Q1001_2|T;Q1001_3|T;Q1001_4|T;Q1001_5|T;Q1001_6|T;Q1001_7|T;Q1002|T;Q10021_1|T;Q10021_2|T;Q10021_3|T;Q10021_4|T;Q10021_5|T;Q10021_6|T;Q10021_7|T;Q10021_8|T;Q10021_9|T;Q10021_10|T;Q10021_11|T;Q10021_12|T;Q10021_13|T;Q10021_14|T;Q10021_15|T;Q10021_16|T;Q10021_17|T;Q10022_1|T;Q10022_2|T;Q10022_3|T;Q10022_4|T;Q10022_5|T;Q10022_6|T;Q10022_7|T;Q10022_8|T;Q10023_1|T;Q10023_2|T;Q10023_3|T;Q10023_4|T;Q10023_5|T;Q10023_6|T;Q10023_7|T;Q10023_8|T;Q10024_1|T;Q10024_2|T;Q10024_3|T;Q10024_4|T;Q10024_5|T;Q10024_6|T;Q10024_7|T;Q10024_8|T;Q10031_1|T;Q10031_2|T;Q10031_3|T;Q10031_4|T;Q10031_5|T;Q10031_6|T;Q10031_7|T;Q10031_8|T;Q10031_9|T;Q10031_10|T;Q10031_11|T;Q10031_12|T;Q10031_13|T;Q10032_1|T;Q10032_2|T;Q10032_3|T;Q10032_4|T;Q10032_5|T;Q10032_6|T;Q10032_7|T;Q10032_8|T;Q10032_9|T;Q10032_10|T;Q10032_11|T;Q10032_12|T;Q10032_13|T;Q10033_1|T;Q10033_2|T;Q10033_3|T;Q10033_4|T;Q10033_5|T;Q10033_6|T;Q10033_7|T;Q10033_8|T;Q10033_9|T;Q10033_10|T;Q10033_11|T;Q10033_12|T;Q10033_13|T;Q10034_1|T;Q10034_2|T;Q10034_3|T;Q10034_4|T;Q10034_5|T;Q10034_6|T;Q10034_7|T;Q10034_8|T;Q10034_9|T;Q10034_10|T;Q10034_11|T;Q10034_12|T;Q10034_13|T;Q10041_1|T;Q10041_2|T;Q10041_3|T;Q10041_4|T;Q10042_1|T;Q10042_2|T;Q10042_3|T;Q10042_4|T;Q10042_5|T;Q10042_6|T;Q10042_7|T;Q10042_8|T;Q10042_9|T;Q10042_10|T;Q10042_11|T;Q10042_12|T;Q10042_13|T;Q10042_14|T;Q10042_15|T;Q10042_16|T;Q10043_1|T;Q10043_2|T;Q10043_3|T;Q10043_4|T;Q10043_5|T;Q10043_6|T;Q10043_7|T;Q10043_8|T;Q10043_9|T;Q10043_10|T;Q10043_11|T;Q10043_12|T;Q10043_13|T;Q10043_14|T;Q10043_15|T;Q10043_16|T;Q10044_1|T;Q10044_2|T;Q10044_3|T;Q10044_4|T;Q10044_5|T;Q10044_6|T;Q10044_7|T;Q10044_8|T;Q10044_9|T;Q10044_10|T;Q10044_11|T;Q10044_12|T;Q10044_13|T;Q10044_14|T;Q10044_15|T;Q10044_16|T;Q10051|N;Q10052_1|T;Q10052_2|T;Q10053_1|T;Q10054|N;Q10055|N;Q10056_1|T;Q10056_2|T;Q10056_3|T;Q10057_1|T;Q100601|N;Q100602|N;Q100603|N;Q100604|N;Q100605|N;Q100606_1|N;Q100606_2|N;Q100606_3|N;Q100607|N;Q100608_1|N;Q100608_2|N;Q100608_3|N;Q100608_4|N;Q100608_5|N;Q100608_6|N;Q100609|N;Q100610|N;Q100611|N;Q100612|N;Q100612a|N;Q100612b|T;Q100612c|T;Q100612d|N;Q100612e|N;Q100613_1|T;Q100613_2|T;Q100613_3|T;Q1006141_1|T;Q1006141_2|T;Q1006141_3|T;Q1006142_1|T;Q1006142_2|T;Q1006142_3|T;Q1006151_1|N;Q1006152_1|T;Q1006153OR_1|T;Q1006154OR_1|T;Q1006153OR2ndShift_1|T;Q10061543rdShift_1|T;Q100616|N;Q100617|N;Q100618|M;Q100619|N;Q100620|N;Q1007011|N;Q1007012|N;Q1007013|N;Q1007021|M;Q1007022|N;Q1007023|N;Q10070311_1|N;Q10070311_2|N;Q10070311_3|N;Q10070311_4|N;Q10070311_5|N;Q10070312_1|N;Q10070312_2|N;Q10070312_3|N;Q10070312_4|N;Q10070312_5|N;Q10070312_6|N;Q10070321_1|T;Q10070321_2|T;Q10070322_1|T;Q10070322_2|T;Q10070331|N;Q0070332|N;Q10070341|N;Q10070342|N;Q10070351|N;Q10070352|N;Q100704|N;Q100705|N;Q100706_1|N;Q100706_2|N;Q100706_3|N;Q100707|N;Q100708|N;Q1007091|N;Q1007092|N;Q100710_1|T;Q100710_2|T;Q100710_3|T;Q100711_1|N;Q100711_2|N;Q100711_3|N;Q100711_4|N;Q1007121_1|N;Q1007121_2|N;Q1007121_3|N;Q1007121_4|N;Q10071221_1|T;Q10071221_2|T;Q10071221_3|T;Q10071221_4|T;Q10071222_1|T;Q10071222_2|T;Q10071222_3|T;Q10071222_4|T;Q10071223_1|T;Q10071223_2|T;Q10071223_3|T;Q10071223_4|T;Q1007123|N;Q10071241_1|N;Q10071241_2|N;Q10071241_3|N;Q10071311_1|T;Q10071311_2|T;Q10071311_3|T;Q10071311_4|T;Q10071312_1|T;Q10071312_2|T;Q10071312_3|T;Q10071312_4|T;Q10071313_1|T;Q10071313_2|T;Q10071313_3|T;Q10071313_4|T;Q1007132|N;Q10071331_1|N;Q10071331_2|N;Q10071331_3|N;Q1007141|N;Q10071421_1|N;Q10071421_2|N;Q10071421_3|N;Q1007151_1|N;Q1007151_2|N;Q1007151_3|N;Q1007151_4|N;Q1007152_1|T;Q1007152_2|T;Q1007152_3|T;Q1007153|N;Q1007154|N;Q10071551|N;Q10071552|N;Q100801_1|N;Q100801_2|N;Q100801_3|N;Q100801_4|N;Q1008021_1|N;Q1008021_2|N;Q1008021_3|N;Q1008021_4|N;Q1008021_5|N;Q1008021_6|N;Q1008021_7|N;Q1008022|N;Q1008031_1|N;Q1008031_2|N;Q1008031_3|N;Q1008031_4|N;Q1008032|N;Q100804_1|N;Q100804_2|N;Q100804_3|N;Q100804_4|N;Q100804_5|N;Q100804_6|N;Q100804_7|N;Q100804_8|N;Q100804_9|N;Q100804_10|N;Q100804_11|N;Q100804_12|N;" /> 
    <input type="hidden" name="PdcZeroFields" value="Q10051;Q10054;Q10055;Q100601;Q100602;Q100603;Q100604;Q100605;Q100606_1;Q100606_2;Q100606_3;Q100607;Q100608_1;Q100608_2;Q100608_3;Q100608_4;Q100608_5;Q100608_6;Q100609;Q100610;Q100611;Q100612;Q1006151_1;Q100616;Q100617;Q100619;Q100620;Q1007011;Q1007012;Q1007013;Q1007022;Q1007023;Q10070311_1;Q10070311_2;Q10070311_3;Q10070311_4;Q10070311_5;Q10070312_1;Q10070312_2;Q10070312_3;Q10070312_4;Q10070312_5;Q10070312_6;Q10070331;Q0070332;Q10070341;Q10070342;Q10070351;Q10070352;Q100704;Q100705;Q100706_1;Q100706_2;Q100706_3;Q100707;Q100708;Q1007091;Q1007092;Q100711_1;Q100711_2;Q100711_3;Q100711_4;Q1007121_1;Q1007121_2;Q1007121_3;Q1007121_4;Q1007123;Q10071241_1;Q10071241_2;Q10071241_3;Q1007132;Q10071331_1;Q10071331_2;Q10071331_3;Q1007141;Q10071421_1;Q10071421_2;Q10071421_3;Q1007151_1;Q1007151_2;Q1007151_3;Q1007151_4;Q1007153;Q1007154;Q10071551;Q10071552;Q100801_1;Q100801_2;Q100801_3;Q100801_4;Q1008021_1;Q1008021_2;Q1008021_3;Q1008021_4;Q1008021_5;Q1008021_6;Q1008021_7;Q1008022;Q1008031_1;Q1008031_2;Q1008031_3;Q1008031_4;Q1008032;Q100804_1;Q100804_2;Q100804_3;Q100804_4;Q100804_5;Q100804_6;Q100804_7;Q100804_8;Q100804_9;Q100804_10;Q100804_11;Q100804_12;" /> 
    <input type="hidden" name="PdcRandomSelected" value="" /> 
    <input type="hidden" name="PdcRspEmlMsg" value="Thank you for completing the wage & salary survey. Your  participation in the survey is very much appreciated.  This statistical program is a benefit of your facilitys membership in IPC. We will send the report via email to the address that you submitted in the survey. If you have any questions or suggestion about this survey, please let us know. You can contact Sree Bhagwat, Market Research Manager, at 330-677-5563 or sreebhagwat@ipc.org " />     
    <input type="hidden" name="PdcThankYouPage" value="Location:https://secure.ipc.org/Survey/thankyou.htm" /> 
    <script type="text/javascript" language="JavaScript1.3"><!--
 
  function PdcProcessPage(){
    
    return true;
  }
  function PdcValidateQuestions(){
    return true;
  }
// --></script> 
    <a name="END" />                
  
  <table width="606" border="0" align="center" cellpadding="0" cellspacing="0">
    <tr>
      <td width="557" height="21"><div align="left"><span class="style24"><strong><span class="style15">It is important that you print the completed questionnaire and keep it as back up</span> </strong></span></div></td>
      <td width="49" rowspan="2"><span class="style24"><strong>
        <input tabindex="236" onkeypress="return noenter()"  type="button" name="print" value="Print" onclick= "printPage1()" />
      </strong></span></td>
    </tr>
    <tr>
      <td height="22">Before printing, set the page orientation to landscape. When your survey is successfully submitted, you will almost immediately see a screen confirming this. Very shortly after this, you should also receive an automatic email, thanking you for your survey, from <u>survey@ipc.org</u>. If you are not sure whether your survey was successfully submitted, please contact Piyamart at <u>homupi@ipc.org</u> or at 1 847 597 2868 </td>
    </tr>
  </table>
  <p> 
  <table width="54%"  border="0" align="center" cellpadding="0">
    <tr>
      <td width="34%"><div align="right">
      </div></td>
      <td width="32%"><div align="center">
        <input tabindex="237" class="submit-button" type="button" name="submitButton" value="Submit Data" onClick="jsSubmitForm();" />
      </div></td>
      <td width="34%"><span class="style24"><strong>
      </strong></span></td>
    </tr>
  </table>
  <p>    </form> 
<p> 
</body>
</html>
[+][-]07/08/08 11:15 PM, ID: 21960957Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: Hypertext Markup Language (HTML)
Tags: HTML
Sign Up Now!
Solution Provided By: Lolly-Ink
Participating Experts: 3
Solution Grade: A
 
[+][-]07/07/08 02:09 PM, ID: 21948697Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07/07/08 02:38 PM, ID: 21948894Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07/07/08 03:13 PM, ID: 21949104Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07/07/08 07:55 PM, ID: 21950453Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07/07/08 07:58 PM, ID: 21950471Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-92 / EE_QW_2_20070628