/test/question_regressions.html

http://github.com/fizx/parsley · HTML · 443 lines · 247 code · 32 blank · 164 comment · 0 complexity · 1b7372c57959713000e3bb87e00e7db6 MD5 · raw file

  1. <html lang="en">
  2. <head>
  3. <title>Amazon Career Section - Job description</title>
  4. <meta http-equiv="content-type" content="text/html;charset=UTF-8">
  5. <script type="text/javascript" src="/700/700PRD.11.0.7.3.0/htdocs/js/UtilCareerSection.js"></script>
  6. <!--interface_no:108-->
  7. <link href="/custom/careersection.css" rel="styleSheet" type="text/css">
  8. <script type="text/javascript" src="/700/700PRD.11.0.7.3.0/htdocs/js/component.js"></script>
  9. <script type="text/javascript" src="/700/700PRD.11.0.7.3.0/htdocs/js/ToolbarJavascriptRecentBrowser.js"></script>
  10. <script type="text/javascript" src="/700/700PRD.11.0.7.3.0/htdocs/js/ToolbarJavascriptGeneral.js"></script>
  11. <script type="text/javascript" language="JavaScript">
  12. tmpToolbar = getNewToolbar();
  13. tmpToolbar.id = "tb";
  14. tmpToolbar.fullId = "preapply_tb";
  15. tmpToolbar.targetForm = "document.preapplyform";
  16. tmpToolbar.formTarget = "";
  17. putToolbar(tmpToolbar);
  18. </script>
  19. <!--interface_no:01-->
  20. <script type="text/javascript" language="JavaScript"><!--
  21. function stopEvent() {
  22. var userAgent = window.navigator.userAgent;
  23. var appName = window.navigator.appName;
  24. if ((appName.indexOf("Explorer") >= 0) && (userAgent.indexOf("Mozilla/3") >= 0) && (userAgent.indexOf("Mac") >= 0)) {
  25. return (true);
  26. } else {
  27. return (false);
  28. }
  29. }
  30. //-->
  31. </script><script type="text/javascript" language="JavaScript">
  32. // 0 run, 1 don't run
  33. var runRegister= 0;
  34. // For double-click check purpose.
  35. var isActionAlreadyRequested = false;
  36. //we need this function because the onSubmit Event of a form is not fired when we submit the form in
  37. //the Onclick event of a button.
  38. function submitEvent()
  39. {
  40. var keepGoing = true;
  41. if (runRegister == 0){keepGoing = executeRegister();}
  42. if (keepGoing)
  43. {
  44. window.document.preapplyform.submit();
  45. }
  46. }
  47. addComponentListener('preapply_tb', 'csToolbarListener');
  48. function csToolbarListener(toolbarId, actionId, value)
  49. {
  50. if (runRegister == 0)
  51. {
  52. return executeRegister();
  53. }
  54. else
  55. {
  56. return NEXT_EVENT_LISTENER_AND_SUBMIT;
  57. }
  58. }
  59. </script>
  60. <style media="screen" type="text/css"><!--.nounderline {text-decoration:none;}--></style>
  61. </head>
  62. <body bgcolor="#FFFFFF" onunload="closeChildWindow();">
  63. <script type="text/javascript" language="JavaScript">
  64. <!--
  65. //---------------------------------------------------------------------
  66. // This method increments the count of browser using the career section
  67. // on the current session in the document's cookie.
  68. // This code is inserted only when IE browser is used
  69. //---------------------------------------------------------------------
  70. function setMultiBrowserDetection()
  71. {
  72. if (window.navigator.cookieEnabled)
  73. {
  74. // The multibrowser problem doesn't occur where cookies are not available
  75. var cs_cnt = -1;
  76. var index = document.cookie.indexOf("cs_cnt");
  77. var countbegin = -1;
  78. var countend = -1;
  79. if (index == -1)
  80. {
  81. cs_cnt = 1;
  82. }
  83. else
  84. {
  85. countbegin = (document.cookie.indexOf("=", index) + 1);
  86. countend = document.cookie.indexOf(";", index);
  87. if (countend == -1)
  88. {
  89. countend = document.cookie.length;
  90. cs_cnt = eval(document.cookie.substring(countbegin, countend));
  91. }
  92. else
  93. {
  94. if (countend < countbegin)
  95. {
  96. cs_cnt = 0;
  97. }
  98. else
  99. {
  100. cs_cnt = eval(document.cookie.substring(countbegin, countend));
  101. }
  102. }
  103. if (cs_cnt < 1)
  104. {
  105. cs_cnt = 1;
  106. }
  107. else
  108. {
  109. cs_cnt = cs_cnt + 1;
  110. }
  111. }
  112. document.cookie = "cs_cnt="+cs_cnt;
  113. if (cs_cnt > 1)
  114. {
  115. // More than one browser is using the current session
  116. window.document.location = "https://amazon.taleo.net/servlets/CareerSection?art_ip_action=MultipleBrowserConflict&art_servlet_language=en&selected_language=en&csNo=2";
  117. }
  118. }
  119. }
  120. //---------------------------------------------------------------------
  121. // This method decrements the count of browser using the career section
  122. // on the current session in the document's cookie.
  123. // This code is inserted only when IE browser is used
  124. //---------------------------------------------------------------------
  125. function unsetMultiBrowserDetection()
  126. {
  127. if (window.navigator.cookieEnabled)
  128. {
  129. // The multibrowser problem doesn't occur where cookies are not available
  130. var cs_cnt = -1;
  131. var index = document.cookie.indexOf("cs_cnt");
  132. var countbegin = -1;
  133. var countend = -1;
  134. if (index == -1)
  135. {
  136. // This could happen if the cookies was enabled after accessing a career section
  137. // We suppose there was only one browser opened
  138. cs_cnt = 0;
  139. }
  140. else
  141. {
  142. countbegin = (document.cookie.indexOf("=", index) + 1);
  143. countend = document.cookie.indexOf(";", index);
  144. if (countend == -1)
  145. {
  146. countend = document.cookie.length;
  147. cs_cnt = eval(document.cookie.substring(countbegin, countend));
  148. }
  149. else
  150. {
  151. if (countend < countbegin)
  152. {
  153. cs_cnt = 0;
  154. }
  155. else
  156. {
  157. cs_cnt = eval(document.cookie.substring(countbegin, countend));
  158. }
  159. }
  160. if (cs_cnt > 0)
  161. {
  162. cs_cnt = cs_cnt - 1;
  163. }
  164. else
  165. {
  166. cs_cnt = 0;
  167. }
  168. }
  169. document.cookie = "cs_cnt="+cs_cnt;
  170. }
  171. }
  172. if (window.attachEvent) window.attachEvent("onload", setMultiBrowserDetection);
  173. if (window.attachEvent) window.attachEvent("onunload", unsetMultiBrowserDetection);
  174. if (window.addEventListener) window.addEventListener("load", setMultiBrowserDetection, false);
  175. if (window.addEventListener) window.addEventListener("unload", unsetMultiBrowserDetection, false);
  176. -->
  177. </script>
  178. <table summary="" border="0" cellpadding="0" cellspacing="0" width="500">
  179. <tr align="left" valign="top">
  180. <td align="left" valign="top">
  181. <form name="preapplyform" method="GET" action="/servlets/CareerSection" onSubmit="if (runRegister == 0) {return executeRegister();}">
  182. <!--interface_no:01-->
  183. <input type="hidden" name="reqNo" value="66474">
  184. <input type="hidden" name="csNo" value="2">
  185. <input type="hidden" name="flowTypeNo" value="13">
  186. <input type="hidden" name="pageSeq" value="2">
  187. <input type="hidden" name="art_servlet_language" value="en">
  188. <input type="hidden" name="selected_language" value="en">
  189. <input type="hidden" name="RS_CHARSET_" value="UTF-8">
  190. <input type="hidden" name="HISTORY" value="">
  191. <!--
  192. --><input type="hidden" name="art_ip_action" value="PreApplyFlowController">
  193. <input type="hidden" name="SessionID" value="noneRequiredWhenCookiesAreEnabled">
  194. <script type="text/javascript" language="JavaScript">
  195. document.write('<input type="hidden" name="JavascriptEnable" value="1">');
  196. </script>
  197. <noscript>
  198. <input type="hidden" name="JavascriptEnable" value="0">
  199. </noscript>
  200. <!--interface_no:55-->
  201. <input type="hidden" name="ComponentID" value="">
  202. <input type="hidden" name="ToolbarActionToExecuteID" value="">
  203. <script type="text/javascript" language="JavaScript"><!--
  204. document.write('<input type="hidden" name="toolbar_submitted" value="0">');
  205. //-->
  206. </script>
  207. <table summary="" border="0" cellpadding="0" cellspacing="0" width="500">
  208. <tr>
  209. <td>
  210. <input type="hidden" name="preapply" value="1">
  211. <input type="hidden" name="current_flow" value="24">
  212. <input type="hidden" name="current_page" value="2">
  213. <input type="hidden" name="callback" value="">
  214. <!--interface_no:05-->
  215. <!-- HEADER PART -->
  216. <!--interface_no:05-->
  217. <a name="topOfCsPage" id="topOfCsPage"></a>
  218. <table summary="" border="0" cellpadding="0" cellspacing="0" width="500">
  219. <tr>
  220. <td colspan="4"><p><H1>Software Development Support Engineer, Retail Customer Experience&nbsp;&#150;&nbsp;037385</H1></p></td>
  221. </tr>
  222. <tr>
  223. <td colspan="4">&nbsp;</td>
  224. </tr>
  225. </table>
  226. <!-- BLOCK TITLE PART -->
  227. <table summary="" border="0" cellspacing="0" cellpadding="0" width="100%">
  228. <tr>
  229. <td><p><H2>Job Description</H2></p></td>
  230. <td></td>
  231. <td></td>
  232. </tr>
  233. </table>
  234. <!-- APPLY BUTTON PART -->
  235. <table summary="" border="0" cellpadding="0" cellspacing="0" width="100%">
  236. <tr>
  237. <td width="100%"></td>
  238. <td align="right" valign="top" nowrap><!--interface_no:66-->
  239. <script type="text/javascript" language="JavaScript"><!--
  240. document.write('<p class="button"><a class="button" href="https://amazon.taleo.net/servlets/CareerSection?art_ip_action=FlowDispatcher&amp;flowTypeNo=13&amp;pageSeq=4&amp;art_servlet_language=en&amp;selected_language=en&amp;csNo=2&amp;LDCondition=LOGIN&amp;LDRedirect=%2Fservlets%2FCareerSection%3Fart_ip_action%3DFlowDispatcher%26flowTypeNo%3D1%26art_servlet_language%3Den%26selected_language%3Den%26reqNo%3D66474%26csNo%3D2#topOfCsPage"');
  241. document.write('onClick="if(isActionAlreadyRequested == false){isActionAlreadyRequested = true; setTimeout(\'isActionAlreadyRequested = false;\', 2000); } else {return dontFollowLink();} " name="apply_online" title="Apply for this position online">');
  242. document.write('<span class="label-button">Apply Online<\/span><\/a><\/p>');
  243. //-->
  244. </script>
  245. <noscript>
  246. <p class="button"><a class="button" href="https://amazon.taleo.net/servlets/CareerSection?art_ip_action=FlowDispatcher&amp;flowTypeNo=13&amp;pageSeq=4&amp;art_servlet_language=en&amp;selected_language=en&amp;csNo=2&amp;LDCondition=LOGIN&amp;LDRedirect=%2Fservlets%2FCareerSection%3Fart_ip_action%3DFlowDispatcher%26flowTypeNo%3D1%26art_servlet_language%3Den%26selected_language%3Den%26reqNo%3D66474%26csNo%3D2#topOfCsPage" name="apply_online" title="Apply for this position online"><span class="label-button">Apply Online</span></a></p>
  247. </noscript>
  248. </td>
  249. </tr>
  250. </table>
  251. <!-- DESCRIPTION & QUALIFICATION PART -->
  252. <table summary="" width="100%" border="0" cellspacing="0" cellpadding="0">
  253. <tr><td><p class="box_content_bold"><span class="label-subtitle">Description</span></p></td></tr>
  254. <tr><td><span class="label-text"><P STYLE="margin-top:0px;margin-bottom:0px"><FONT FACE=Arial SIZE=2>Looking for the best of both worlds? Want to work in a startup environment but with all the advantages of Amazon.com, the e-commerce leader?&nbsp; Endless.com and Javari.jp development team is looking for a talented Software Development Support Engineer who will be the first level support for all incoming production software application issues. Endless and Javari are online shoe e-commerce sites recently launched by Amazon.com.&nbsp;&nbsp; </FONT></P><P STYLE="margin-top:0px;margin-bottom:0px"><FONT FACE=Arial SIZE=2></FONT>&nbsp;</P><P STYLE="margin-top:0px;margin-bottom:0px"><FONT FACE=Arial SIZE=2>Primary responsibilities include diagnosing and fixing production software issues on endless.com and javari.jp and working with other internal teams to resolve issues in their software that are effecting the endless.com website.&nbsp; Other responsibilities include automation of support processes, developing monitoring solutions and building tools to help programmatically identity and diagnose the root cause of website issues.&nbsp;&nbsp; High Impact production issues often require coordination between multiple Operations and IT Support groups.&nbsp; </FONT></P><P STYLE="margin-top:0px;margin-bottom:0px"><FONT FACE=Arial SIZE=2></FONT>&nbsp;</P></span></td></tr>
  255. <tr><td><br></td></tr>
  256. <tr><td><span class="label-subtitle">Qualifications</span></td></tr>
  257. <tr><td><span class="label-text"><P STYLE="margin-top:0px;margin-bottom:0px"><FONT FACE=Arial SIZE=2>Excellent problem solving and coding skills are required to be successful in this position. Strong verbal communication skills are needed for coordinating with internal business teams and other software development groups.&nbsp;&nbsp;&nbsp; The ideal candidate is interested in a career in software development and is looking to expand their coding skills by gaining exposure to a wide variety of software applications.&nbsp; The person who fits this role is organized, independent, self-motivating and can maintain professionalism under pressure. Necessary technical skills include: JAVA, Javascript, CSS, HTML, AJAX, Perl,&nbsp; SQL, LINUX/UNIX. A Computer Science degree or other technical degree is required.<BR></FONT></P></span></td></tr>
  258. </table>
  259. <!-- PROFILE PART -->
  260. <br>
  261. <table summary="" width="100%" border="1" cellspacing="0" cellpadding="0">
  262. <tr>
  263. <td>
  264. <table summary="" width="100%" border="0" cellspacing="0" cellpadding="0">
  265. <tr>
  266. <td class="cell-box-title"><img src="/700/700PRD.11.0.7.3.0/htdocs/images/CareerSection/_shim_1px1p_transparent.gif" alt="" height="15" width="5" border="0"></td>
  267. <td class="cell-box-title" colspan="3" nowrap><span class="label-box-title">Profile</span></td>
  268. <td class="cell-box-title"><img src="/700/700PRD.11.0.7.3.0/htdocs/images/CareerSection/_shim_1px1p_transparent.gif" alt="" height="15" width="10" border="0"></td>
  269. </tr>
  270. <tr>
  271. <td class="cell-box-text" width="1%">&nbsp;</td>
  272. <td class="cell-box-text" valign="top" NOWRAP><span class="label-box-subtitle">Job Field</span></td>
  273. <td class="cell-box-text" width="1%">&nbsp;</td>
  274. <td class="cell-box-text" width="100%" valign="top"><span class="label-box-text">Support Engineer</span></td>
  275. <td class="cell-box-text" width="1%">&nbsp;</td>
  276. </tr>
  277. <tr>
  278. <td class="cell-box-text" width="1%">&nbsp;</td>
  279. <td class="cell-box-text" valign="top" NOWRAP><span class="label-box-subtitle">Locations</span></td>
  280. <td class="cell-box-text" width="1%">&nbsp;</td>
  281. <td class="cell-box-text" width="100%" valign="top"><span class="label-box-text">Washington-Seattle</span></td>
  282. <td class="cell-box-text" width="1%">&nbsp;</td>
  283. </tr>
  284. <tr>
  285. <td class="cell-box-text" width="1%">&nbsp;</td>
  286. <td class="cell-box-text" valign="top" NOWRAP><span class="label-box-subtitle">Organization</span></td>
  287. <td class="cell-box-text" width="1%">&nbsp;</td>
  288. <td class="cell-box-text" width="100%" valign="top"><span class="label-box-text">Amazon</span></td>
  289. <td class="cell-box-text" width="1%">&nbsp;</td>
  290. </tr>
  291. </table>
  292. </td>
  293. </tr>
  294. </table>
  295. <!-- ADDITIONAL INFO PART -->
  296. <br>
  297. <table summary="" width="100%" border="1" cellspacing="0" cellpadding="0">
  298. <tr>
  299. <td>
  300. <table summary="" width="100%" border="0" cellspacing="0" cellpadding="0">
  301. <tr>
  302. <td class="cell-box-title" width="1%"><img src="/700/700PRD.11.0.7.3.0/htdocs/images/CareerSection/_shim_1px1p_transparent.gif" alt="" height="15" width="5" border="0"></td>
  303. <td class="cell-box-title" colspan="3"><span class="label-box-title">Additional Information</span></td>
  304. <td class="cell-box-title" width="1%"><img src="/700/700PRD.11.0.7.3.0/htdocs/images/CareerSection/_shim_1px1p_transparent.gif" alt="" height="15" width="8" border="0"></td>
  305. </tr>
  306. <tr>
  307. <td class="cell-box-text" width="1%">&nbsp;</td>
  308. <td class="cell-box-text" valign="top" NOWRAP><span class="label-box-subtitle">Posting Date</span></td>
  309. <td class="cell-box-text" width="1%">&nbsp;</td>
  310. <td class="cell-box-text" valign="top" width="100%"><span class="label-box-text">May 27, 2009, 11:13 PM, (UTC -7:00)</span></td>
  311. <td class="cell-box-text" width="1%">&nbsp;</td>
  312. </tr>
  313. </table>
  314. </td>
  315. </tr>
  316. </table>
  317. <!-- UDF PART -->
  318. <br>
  319. <table summary="" width="auto" border="0" cellspacing="0" cellpadding="1">
  320. <tr>
  321. <td valign="top"><span class="label-subtitle"> </span></td>
  322. <td><span class="label-text">&nbsp;</span></td>
  323. <td valign="top"><span class="label-text">NOTE: Clicking [Apply Online] and submitting your information through this site is the only way external candidates may apply for this position with Amazon.com.</span></td>
  324. </tr>
  325. </table>
  326. <br>
  327. <table summary="" border="0" cellpadding="0" cellspacing="0" width="100%">
  328. <tr>
  329. <!-- SEND TO A FRIEND PART -->
  330. <script type="text/javascript" language="JavaScript"><!--
  331. function openSendThisJob()
  332. {
  333. openWindow('/servlets/CareerSection?art_ip_action=SendJob&reqNo=66474&altCsNo=2&art_servlet_language=en&selected_language=en&csNo=2&art_view_popup=true', 'send_job', '450', '480', 'yes', 'yes', '0', '0');
  334. }
  335. //-->
  336. </script>
  337. <td align="left" width="100%"><img src="/700/700PRD.11.0.7.3.0/htdocs/images/CareerSection/icon_send.gif" align="middle" alt="">
  338. <script type="text/javascript" language="JavaScript"><!--
  339. document.write('<a href="#" title="Open the form used to send this job to a friend" name="SendToFriend" onclick="openSendThisJob(); return dontFollowLink();"><span class="label-link">Send this job to a friend</span></a>');
  340. //-->
  341. </script>
  342. <noscript>
  343. <a href="/servlets/CareerSection?art_ip_action=SendJob&reqNo=66474&altCsNo=2&art_servlet_language=en&selected_language=en&csNo=2&art_view_popup=true" title="Open the form used to send this job to a friend" name="SendToFriend" target="_blank"><span class="label-link">Send this job to a friend</span></a>
  344. </noscript>
  345. </td>
  346. </tr>
  347. </table>
  348. <!-- RETURN TO JOBLIST PART -->
  349. <table summary="" width="100%" border="0" cellspacing="0" cellpadding="0">
  350. <tr>
  351. <td align="left"><img src="/700/700PRD.11.0.7.3.0/htdocs/images/CareerSection/icon_return.gif" alt="" align="middle">&nbsp;<a name="return_job_list" title="Access the list of job openings within the organization" href="https://amazon.taleo.net/servlets/CareerSection?art_ip_action=FlowDispatcher&amp;flowTypeNo=13&amp;pageSeq=1&amp;alt=1&amp;art_servlet_language=en&amp;selected_language=en&amp;csNo=2&amp;sp=1"><span class="label-link">Return to the job list</span></a></td>
  352. <!-- BOTTOM APPLY BUTTON PART -->
  353. <td align="right" nowrap><!--interface_no:66-->
  354. <script type="text/javascript" language="JavaScript"><!--
  355. document.write('<p class="button"><a class="button" href="https://amazon.taleo.net/servlets/CareerSection?art_ip_action=FlowDispatcher&amp;flowTypeNo=13&amp;pageSeq=4&amp;art_servlet_language=en&amp;selected_language=en&amp;csNo=2&amp;LDCondition=LOGIN&amp;LDRedirect=%2Fservlets%2FCareerSection%3Fart_ip_action%3DFlowDispatcher%26flowTypeNo%3D1%26art_servlet_language%3Den%26selected_language%3Den%26reqNo%3D66474%26csNo%3D2#topOfCsPage"');
  356. document.write('onClick="if(isActionAlreadyRequested == false){isActionAlreadyRequested = true; setTimeout(\'isActionAlreadyRequested = false;\', 2000); } else {return dontFollowLink();} " name="apply_online" title="Apply for this position online">');
  357. document.write('<span class="label-button">Apply Online<\/span><\/a><\/p>');
  358. //-->
  359. </script>
  360. <noscript>
  361. <p class="button"><a class="button" href="https://amazon.taleo.net/servlets/CareerSection?art_ip_action=FlowDispatcher&amp;flowTypeNo=13&amp;pageSeq=4&amp;art_servlet_language=en&amp;selected_language=en&amp;csNo=2&amp;LDCondition=LOGIN&amp;LDRedirect=%2Fservlets%2FCareerSection%3Fart_ip_action%3DFlowDispatcher%26flowTypeNo%3D1%26art_servlet_language%3Den%26selected_language%3Den%26reqNo%3D66474%26csNo%3D2#topOfCsPage" name="apply_online" title="Apply for this position online"><span class="label-button">Apply Online</span></a></p>
  362. </noscript>
  363. </td>
  364. </tr>
  365. </table>
  366. <INPUT NAME="JobDetailBlock" TYPE="HIDDEN" VALUE="281">
  367. <input NAME="preapply_pg" TYPE="hidden" VALUE="1">
  368. </td>
  369. </tr>
  370. </table>
  371. </form>
  372. </td>
  373. </tr>
  374. </table>
  375. <table summary="" width="500">
  376. <tr>
  377. <td align="right">
  378. </td>
  379. </tr>
  380. </table>
  381. <table summary="" border="0" cellpadding="0" cellspacing="0" width="500">
  382. <tr align="center" valign="top">
  383. <td align="center" valign="top">
  384. <hr size="1">
  385. <table summary="" border="0" cellspacing="2" cellpadding="0">
  386. <tr>
  387. <td>
  388. <script type="text/javascript" language="javascript"><!--
  389. window.document.write('<img src="\x2f700\x2f700PRD.11.0.7.3.0\x2fhtdocs\x2fimages\x2fCareerSection\x2flogo_powered_by.gif" border="0" alt="Taleo logo"><\/td>');
  390. window.document.write('<td nowrap><img src="\x2f700\x2f700PRD.11.0.7.3.0\x2fhtdocs\x2fimages\x2fCareerSection\x2f_shim_1px1p_transparent.gif" alt="" height="3" width="3"><\/td>');
  391. window.document.write('<td nowrap><a href=\"http:\x2f\x2fwww.taleo.com\" title=\"This service is powered by Taleo - Access Taleo\'s Web site\" onClick=\"openWindow(\'http:\x2f\x2fwww.taleo.com\', \'taleo\', \'790\', \'630\', \'yes\', \'yes\', \'0\', \'0\'); return stopEvent();\"><span class="label-link">Powered by Taleo<\/span><\/a>');
  392. //-->
  393. </script>
  394. <noscript>
  395. <img src="/700/700PRD.11.0.7.3.0/htdocs/images/CareerSection/logo_powered_by.gif" border="0" alt="Taleo logo"></td>
  396. <td nowrap><img src="/700/700PRD.11.0.7.3.0/htdocs/images/CareerSection/_shim_1px1p_transparent.gif" alt="" height="3" width="3"></td>
  397. <td nowrap><a href="http://www.taleo.com" title="This service is powered by Taleo - Access Taleo's Web site" target="_blank"><span class="label-link">Powered by Taleo</span></a>
  398. </noscript>
  399. </td>
  400. </tr>
  401. </table>
  402. </td>
  403. </tr>
  404. </table>
  405. <script type="text/javascript" language="JavaScript"><!--
  406. setInterval("window.document.images.KeepAliveCS.src = '/servlets/KeepAliveCS.gif?product=40&JServSessionIdamazon=1fk87emrl3bqa9uv2.RJS3498_3500'", 300000);
  407. window.document.write('<table summary="" border="0" cellpadding="0" cellspacing="0"><tr><td><img name="KeepAliveCS" src="/700/700PRD.11.0.7.3.0/htdocs/images/CareerSection/_shim_1px1p_transparent.gif" border="0" width="1" height="1" alt=""><\/td><\/tr><\/table>');
  408. //-->
  409. </script>
  410. </body>
  411. </html>