Advertisement

07.06.2008 at 02:17PM PDT, ID: 23542048
[x]
Attachment Details

How to remeber what is selected

Asked by jeremyBass26 in JavaScript

Tags:

Hello, I think I have an easy question that seems to be stumping me... all that needs to happen is if you go to this page
https://www.sjrmc.org/Core/employment-opportunities/interactive-job-application
and click the "online" radio and login... it comes back to this page, but I'd like the online to still be selected and with the right divs showing... Thank you...
jeremyBass
Start Free Trial
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:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<link rel="stylesheet" type="text/css" href="https://www.sjrmc.org/Core/modules/Album/css/stylesheet.css" />
<title>St. Joseph Regional Medical Center - Job Application &#124 Lewiston Idaho</title>
<base href="https://www.sjrmc.org/Core/" />
<meta name="Generator" content="St. Joseph Regional Medical Center- People Committed to Life" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<meta name="title" content="Job Application" >
	
		  		<meta name="description" content=" Job Application - St. Joseph Regional Medical Center - Enjoy one of the easy applications you'll evern have to fill out.  This RIA application is made to protect you">
	<meta name="keywords"
      content="best hospitals, Anesthesiology, Cardiology, Dentistry, Dermatology, Emergency Medicine, Family Practice, Gastroenterology, Hospitalist, Internal Medicine, Nephrology, Neurology, Neurosurgery, OB/GYN, Oncology, Opthamology, Oral Surgery, Orthopedics, Otolaryngology, Pathology, Pediatrics, Plastic Surgery, Psychiatry, Pulmonology, Radiology, Surgery, Surgical Assistant, Urology, Wound Care, Lewiston, Idaho, Washington, Clarkston, Regional Medical Center, Medical Center, St. Joseph, Doctors">
	<meta name="robots" content="FOLLOW,INDEX"/>
	<meta name="revisit-after" content="3 DAYS"/>
	<meta name="LASTUPDATE" content="Sun, 06 Jul 2008 13:47:00 -0700 MST" />
	<meta name="revised" content="Sun, 06 Jul 2008 13:47:00 -0700 MST" />
 
 
 
<script language="JavaScript"  type="text/javascript">
<!--
function loadjscssfile(filename, filetype){
 if (filetype=="js"){ //if filename is a external JavaScript file
  var fileref=document.createElement('script')
  fileref.setAttribute("type","text/javascript");
  fileref.setAttribute("src", filename);
 }
 else if (filetype=="css"){ //if filename is an external CSS file
  var fileref=document.createElement("link")
  fileref.setAttribute("rel", "stylesheet");
  fileref.setAttribute("type", "text/css");
  fileref.setAttribute("href", filename);
 }
 if (typeof fileref!="undefined")
  document.getElementsByTagName("head")[0].appendChild(fileref)
}
 
var filesadded="" //list of files already added
 
function checkloadjscssfile(filename, filetype){
 if (filesadded.indexOf("["+filename+"]")==-1){
  loadjscssfile(filename, filetype)
  filesadded+="["+filename+"]" //add to list of files already added, in the form of "[filename1],[filename2],etc"
 }
 else
  alert("file already added!")
}
checkloadjscssfile("/Core/Scripts/shadowbox/build/adapter/shadowbox-base.js", "js") 
checkloadjscssfile("/Core/Scripts/shadowbox/build/shadowbox.js", "js") 
checkloadjscssfile("/Core/Scripts/jquery-1.2.6.js", "js") 
checkloadjscssfile("/Core/Scripts/AC_RunActiveContent.js", "js") 
checkloadjscssfile("/Core/Scripts/MenuSystem/fsmenu.js", "js") 
checkloadjscssfile("/Core/Scripts/MenuSystem/listmenu_o.css", "css") 
checkloadjscssfile("/Core/Scripts/MenuSystem/listmenu_fallback.css", "css") 
//loadjscssfile("javascript.php", "js") //dynamically load "javascript.php" as a JavaScript file
//-->
</script>
<script language="JavaScript"  type="text/javascript">
<!--
function toggleDiv(divid){
    var prefix = '';
    if (window.event.ctrlKey) {
         document.test.control.value = 'true';
	}else{
         if(document.getElementById(divid).style.display == 'none'){
      document.getElementById(divid).style.display = 'block';
      document.pageLoading.TCallLabel('/','restart_function');
          }else{
      document.getElementById(divid).style.display = 'none';
    }
	}
 
}
//-->
</script>
<script language="JavaScript" type="text/JavaScript">
<!--
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
href=mylink;
else
href=mylink.href;
window.open(href, windowname, ',type=fullWindow,fullscreen,menubar=yes,scrollbars=yes');
return false;
}
//-->
</script>
<script language="JavaScript" type="text/JavaScript">
<!--
function P7_MinMaxW(a,b){var nw="auto",w=document.documentElement.clientWidth;if(w>=b){nw=b+"px";}if(w<=a){nw=a+"px";}return nw;}
//-->
</script>
<!--[if lte IE 6]>
<style type="text/css">
#pagewrapper2 {width:expression(P7_MinMaxW(800,1000));}
#container {height: 1%;}
</style>
<![endif]-->
 
 
 
 
<script type="text/javascript">
Shadowbox.loadSkin('classic', '/Core/Scripts/shadowbox/src/skin');
Shadowbox.loadLanguage('en', '/Core/Scripts/shadowbox/build/lang');
Shadowbox.loadPlayer(['html'], '/Core/Scripts/shadowbox/build/player');
 
window.onload = function(){
 
    Shadowbox.init();
//initDemos();
};
 
</script>
 
////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////The Div switching functions
//////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////
<style type="text/css">
<!--
.inputTypeNotice1{
	float:left;
	margin-top: -75px;
	margin-left: 200px;
	font-size: 14px;
	font-weight: bold;
	color: #000099;
	text-align: left;
}
.inputTypeNotice2{
float:left;
	margin-top: -75px;
	margin-left: 200px;
	font-size: 14px;
	font-weight: bold;
	color: #000099;
	text-align: left;
}
.inputTypeNotice3{
float:left;
	margin-top: -75px;
	margin-left: 200px;
	font-size: 14px;
	font-weight: bold;
	color: #000099;
	text-align: left;
}
 
-->
</style>
 
<script type="text/javascript">
	function SetHTML1(type) {
		document.getElementById("a3").style.display = "none"
		document.getElementById("b3").style.display = "none"
		document.getElementById("c3").style.display = "none"
document.getElementById("AS1").style.display = "none"
document.getElementById("AS2").style.display = "none"
		// Using style.display="block" instead of style.display="" leaves a carriage return
		document.getElementById(type).style.display = ""
	}
</script>
////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////End Of The Div switching functions
//////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////
<script language="JavaScript">
<!--
function getFlashMovieObject(movieName)
{
  if (window.document[movieName]) 
  {
    return window.document[movieName];
  }
  if (navigator.appName.indexOf("Microsoft Internet")==-1)
  {
    if (document.embeds && document.embeds[movieName])
      return document.embeds[movieName]; 
  }
  else // if (navigator.appName.indexOf("Microsoft Internet")!=-1)
  {
    return document.getElementById(movieName);
  }
}
 
 
function formSubmit()  {   
alert("submiting now");
document.getElementById("m7moduleform_2").submit()
}
 
 
 
function formSend() {
alert('formSend()');
var text = document.htmlForm.sendField.value;
getFlashMovie("v2.l").sendTextToFlash(ObjectToPass);
 
}
 
 
function getTextFromFlash(str) {
///////splits the strings
	var formFIELDSname = new Array ();		
	for(i = 0 ; i <formFIELDS.length;  i++){
		var mySplitFormFIELDSResult = formFIELDS[i].split("_APPz_");		
		formFIELDSname.push(mySplitFormFIELDSResult[1]);
	}
	//alert(formFIELDSname);
	for(i = 0 ; i <formFIELDSname.length;  i++){
		//alert('FIELDS name to check against and for placement:::: '+formFIELDSname[i]);
	}
	var myString = str;
	for(i = 0 ; i <myString.length;  i++){
	var mySplitResult = myString[i].split(":");
	}
//// needs to strip _Y or _N if exist in string from mySplitResult
	var patternA = new RegExp("_Y$");
	var patternB = new RegExp("_N$");
	new_mySplitResult = mySplitResult[0].replace(patternA, "");
	FINResult = new_mySplitResult.replace(patternB, "");
	//alert('FINResult::' + FINResult);
 
//// push FINResult to formFIELDS were FINResult[0] == formFIELDSname[1]
 
	//alert('test2::::' + mySplitResult);
	//alert('test for value placment::::' + FINResult);
	//alert('Value wanted::::' + mySplitResult[1]);	
	for(i = 0 ; i <formFIELDSname.length;  i++){
			if (FINResult == formFIELDSname[i]) {
				//alert('Field and Value::::'+FINResult+'::::'+ mySplitResult[1]);
				document.getElementById('m7feu_input__APPz_'+FINResult).value = mySplitResult[1];
 
			}
	}
 
}
 //-->
</script>
 
 
 
 
 
 
<link rel="stylesheet" type="text/css" media="screen" href="https://www.sjrmc.org/Core/stylesheet.php?templateid=20&amp;mediatype=screen" />
<link rel="stylesheet" type="text/css" media="print" href="https://www.sjrmc.org/Core/stylesheet.php?templateid=20&amp;mediatype=print" />
 
 
 
<link rel="start" title="We at St. Joseph Regional Medical Center strive to stay on top of the newest tools to help you reach your peak health.  What is one of our newest tools?  You're looking at it.  This new website will keep you and our doctors closer then ever." href="https://www.sjrmc.org/Core/" />
<link rel="prev" title="A career in the medical health field is one of the most rewarding careers there is! If you would like to be a part of the team of people that is committed to life, then we want to hear from you. " href="https://www.sjrmc.org/Core/employment-opportunities" />
<link rel="next" title="Find a Doctor" href="https://www.sjrmc.org/Core/DoctorDirectory" />
 
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="https://www.sjrmc.org/Core/News/rss/" /></head>
<body>
<table id="maintable" cellspacing="0" cellpadding="0">
  <tr>
    <td id="leftGRD"></td>
    <td id="pagewrapper">
<div id="pagewrapper2">
        <ul class="accessibility">
      <li><a href="/Core/employment-opportunities/interactive-job-application#menu_vert" title="Skip to navigation" accesskey="n">Skip to navigation</a></li>
      <li><a href="/Core/employment-opportunities/interactive-job-application#main" title="Skip to content" accesskey="s">Skip to content</a></li>
    </ul>
    
    <hr class="accessibility" />
    
      <div id="header">
           <h1><a href="https://www.sjrmc.org/Core/" title="We at St. Joseph Regional Medical Center strive to stay on top of the newest tools to help you reach your peak health.  What is one of our newest tools?  You're looking at it.  This new website will keep you and our doctors closer then ever.">St. Joseph Regional Medical Center</a></h1>
   <hr class="accessibility" />
   </div>
   
<div id="midHeader" style="z-index: -1000">
 
<div id="hideMe4" style="
	z-index: -1000;
	display: '';
"><script type="text/javascript">
AC_FL_RunContent( 'codebase', 'https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0','width','775','height','197','title','Header','src','/Core_images/elements/Test resize','quality','high','pluginspage', 'https://www.macromedia.com/go/getflashplayer','movie','/Core_images/elements/Test resize' );
 //end AC code
</script><noscript><object type="application/x-shockwave-flash"
data="c.swf?path=/Core_images/elements/Test resize.swf" 
width="775" height="197">
<param name="movie" 
value="c.swf?path=/Core_images/elements/Test resize.swf" />
</object></noscript></div> 
 
	
</div>
      <div id="search">
          <table width="100%" border="0" cellspacing="0" cellpadding="0">
  
  <tr>
    <td>
      <div class="login_OUT"><a href="my-account/login/" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Account&nbsp;&frasl;&nbsp;</a><a href="https://www.sjrmc.org/Core/my-account/login" title="My Account">login</a>&nbsp;|</div>
       </td>
    
    <td>
<form id="cntnt01moduleform_1" method="get" action="index.php"><div class="hidden"><input type="hidden" name="mact" value="Search,cntnt01,dosearch,0" /><input type="hidden" name="cntnt01returnid" value="93" /></div>
 
    <label for="cntnt01searchinput">Search</label>:&nbsp;<input type="text" name="cntnt01searchinput" size="20" maxlength="50" onfocus="if(this.value==this.defaultValue) this.value='';" onblur="if(this.value=='') this.value=this.defaultValue;"/><input name="submit" value="Submit" type="submit" onMouseDown="javascript:toggleDiv('hideMe3')"/>
 
</form>
 
</td>
     </tr>
  
</table>
   </div>
   
      <div class="breadcrumbs">
        You are here: <a href="https://www.sjrmc.org/Core/employment-opportunities">Employment Opportunities</a> » <span class="lastitem">Job Application</span>
   <hr class="accessibility" />
   </div>
   
      <div id="content">
            <div id="sidebar">
            <div id="menu_vert">
 
 
<ul class="menulist" id="listMenuRoot">
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/" accesskey="1" ><dfn>1: </dfn>St. Joseph Home</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="https://www.sjrmc.org/Core/services" ><dfn>2: </dfn>Services</a>
 
 
	<ul>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/services/auxiliary-volunteer" ><dfn>2.1: </dfn>Auxiliary Volunteer</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/services/regional-cancer-center" ><dfn>2.2: </dfn>Regional Cancer Center</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="https://www.sjrmc.org/Core/services/CHERC" ><dfn>2.3: </dfn>Resource Center</a>
 
 
	<ul>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/services/CHERC/cpr" ><dfn>2.3.1: </dfn>CPR</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/services/CHERC/first-aid" ><dfn>2.3.2: </dfn>First Aid</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/services/CHERC/family-beginnings-classes" ><dfn>2.3.3: </dfn>Family Beginnings Classes</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/services/CHERC/diabetes-center-education" ><dfn>2.3.4: </dfn>Diabetes Center-Education</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/services/CHERC/tobacco-free-you" ><dfn>2.3.5: </dfn>Tobacco Free You</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/services/CHERC/nutrition-education" ><dfn>2.3.6: </dfn>Nutrition Education</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/services/CHERC/wound-and-ostomy-education" ><dfn>2.3.7: </dfn>Wound and Ostomy Education</a>
 
 
	</li></ul>
	</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/staff-content/health-news"  target="_self"><dfn>2.5: </dfn>Health News</a>
 
 
	</li></ul>
	</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="https://www.sjrmc.org/Core/family-beginnings" ><dfn>3: </dfn>Family Beginnings</a>
 
 
	<ul>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/family-beginnings/classes-groups" ><dfn>3.1: </dfn>Classes and Groups</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="https://www.sjrmc.org/Core/family-beginnings/newborns" ><dfn>3.2: </dfn>Newborns</a>
 
 
	<ul>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/family-beginnings/newborns/2007-2" ><dfn>3.2.1: </dfn>2007</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/family-beginnings/newborns/2008-2" ><dfn>3.2.2: </dfn>2008</a>
 
 
	</li></ul></li></ul>
	</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="https://www.sjrmc.org/Core/events-calendar" ><dfn>4: </dfn>Events Calendar</a>
 
 
	<ul>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/events-calendar/today-at-st-joe-s" ><dfn>4.1: </dfn>Today at St. Joe&#39;s</a>
 
 
	</li></ul>
	</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="https://www.sjrmc.org/Core/about-st-joseph" ><dfn>5: </dfn>About St. Joseph</a>
 
 
	<ul>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/about-st-joseph/contact-st-joseph" ><dfn>5.1: </dfn>Contact St. Joseph</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/about-st-joseph/accreditations" ><dfn>5.2: </dfn>Accreditations</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/about-st-joseph/publications" ><dfn>5.3: </dfn>Publications</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/about-st-joseph/news" ><dfn>5.4: </dfn>News</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/about-st-joseph/awards" ><dfn>5.5: </dfn>Awards</a>
 
 
	</li></ul>
	</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="https://www.sjrmc.org/Core/foundation" ><dfn>6: </dfn>Foundation</a>
 
 
	<ul>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/foundation/board-members" ><dfn>6.1: </dfn>Board Members</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/foundation/foundation-projects" ><dfn>6.2: </dfn>CENTURY CLUB</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/foundation/foundation-projects-2" ><dfn>6.3: </dfn>Foundation Projects</a>
 
 
	</li></ul>
	</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/gift-shop" ><dfn>7: </dfn>Gift Shop</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="https://www.sjrmc.org/Core/employment-opportunities" ><dfn>8: </dfn>Employment Opportunities</a>
 
 
	<ul>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="https://www.sjrmc.org/Core/employment-opportunities/interactive-job-application" ><dfn>8.1: </dfn>Job Application</a>
 
 
	</li></ul>
	</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="https://www.sjrmc.org/Core/DoctorDirectory" ><dfn>9: </dfn>Find a Doctor</a>
 
 
	<ul>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="https://www.sjrmc.org/Core/DoctorDirectory/Anesthesiology" ><dfn>9.1: </dfn>Anesthesiology</a>
 
 
	<ul>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Anesthesiology/LarryDavis" ><dfn>9.1.1: </dfn>Larry Davis, M.D.</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Anesthesiology/thomas-j-grissom-m-d" ><dfn>9.1.2: </dfn>Thomas J. Grissom, M.D.</a>
 
 
	</li></ul>
	</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="https://www.sjrmc.org/Core/DoctorDirectory/DD_Cardiology" ><dfn>9.2: </dfn>Cardiology</a>
 
 
	<ul>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/DD_Cardiology/lee-gould-m-d" ><dfn>9.2.1: </dfn>Lee Gould, M.D. </a>
 
 
	</li></ul>
	</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/dentistry" ><dfn>9.3: </dfn>Dentistry</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/dermatology" ><dfn>9.4: </dfn>Dermatology</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/emergency-medicine" ><dfn>9.5: </dfn>Emergency Medicine</a>
 
 
	</li></ul>		</li>
	</ul>
 
 
<script type="text/javascript">
//<![CDATA[
 
 
var listMenu = new FSMenu('listMenu', true, 'display', 'block', 'none');
 
 
listMenu.animations[listMenu.animations.length] = FSMenu.animFade;
listMenu.animations[listMenu.animations.length] = FSMenu.animSwipeDown;
listMenu.animations[listMenu.animations.length] = FSMenu.animClipDown;
 
 
var arrow = null;
if (document.createElement && document.documentElement)
{
 arrow = document.createElement('span');
 arrow.appendChild(document.createTextNode('>'));
 // Feel free to replace the above two lines with these for a small arrow image...
 //arrow = document.createElement('img');
 //arrow.src = 'arrow.gif';
 //arrow.style.borderWidth = '0';
 arrow.className = 'subind';
}
addEvent(window, 'load', new Function('listMenu.activateMenu("listMenuRoot", arrow)'));
 
 
// You may wish to leave your menu as a visible list initially, then apply its style
// dynamically on activation for better accessibility. Screenreaders and older browsers will
// then see all your menu data, but there will be a 'flicker' of the raw list before the
// page has completely loaded. If you want to do this, remove the CLASS="..." attribute from
// the above outermost UL tag, and uncomment this line:
//addEvent(window, 'load', new Function('getRef("listMenuRoot").className="menulist"'));
 
//]]>
</script>
 
 
         <h2 class="accessibility">Navigation</h2>
      </div>
            <div id="news">
         <h2><a href="https://www.sjrmc.org/Core/about-st-joseph/news" onMouseDown="javascript:toggleDiv('hideMe3')">News</a></h2>
          <!-- Displaying News Module -->
<!-- News Categories: '' -->
<!-- Start News Display Template -->
 
 
<div class="NewsSummary"> <div class="NewsSummaryPostdate">05/30/2008</div>
    <div class="NewsSummaryLink"><a href="https://www.sjrmc.org/Core/news/3/88/Brenda-McIntosh-2008-Employee-of-the-Year">Brenda McIntosh 2008 Employee of the Year</a></div>
  <div class="NewsSummaryCategory">Category: Employee News</div>
     <!--<div class="NewsSummaryAuthor">Posted by: StjoeAdmin</div>-->
    <div class="NewsSummarySummary">Brenda McIntosh, a 24-year employee of St. Joseph Regional Medical Center, has been selected as the 2008 Employee of the Year in recognition of her many contributions.</div>
  <div class="NewsSummaryMorelink" onMouseDown="javascript:toggleDiv('hideMe3')"><span style="float:left; line-height:13px;">[<a href="https://www.sjrmc.org/Core/news/3/88/Brenda-McIntosh-2008-Employee-of-the-Year">More</a>]</span><span style="float:right; line-height:13px;"><a href="https://www.sjrmc.org/Core/about-st-joseph/news">&#91;Browse&#93;</a></span><br/></div>
  </div>
<!-- End News Display Template -->
      </div>
 
      <div style="text-align:left;" >
<a href="../pacs.html" onclick="return popup(this,'bigwindow')" ><img border="0" width="204" src="images/cms/pacs.png" height="38" alt="PACS Link"/></a>
</div>
<div style="text-align:right;" >
<br/><a href="https://www.sjrmc.org/Core/staff-content/health-news"><img src="/St_Joe_Core/images/icon-healthday-box.gif" alt="Health Day" width="200" height="157" border="0" style="margin-left:10px;"></a><br/><br/>
<a target="_self" href="https://www.sjrmc.org/Core/services/CHERC"><img border="0" width="180" src="images/cherc_DB_flat.png" alt="Community Health Education Resource Center" height="63" /></a>
<br/>
<br/>
<a target="_self" href="https://www.sjrmc.org/Core/foundation" onmousedown="javascript:toggleDiv('hideMe3')"><img border="0" width="180" src="/St_Joe_Core/images/logo_foundation.gif" alt="St. Joseph Regional Medical Center Foundation" height="50" /></a>
<br/>
<a target="_blank" href="http://www.ascensionhealth.org/"><img border="0" width="160" src="../images/logo_ascension_health.gif" alt="Ascension Health" height="73" /></a>
<br/><br/>
</div>
      </div>
                  <div id="main">
         <div style="float: right;">
 
<a href="https://www.sjrmc.org/Core/help" onmousedown="javascript:toggleDiv('hideMe3')" >
 
 
 
<script type="text/javascript"> 
AC_FL_RunContent( 'codebase', 'https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0','width','35','height','35','title','Visit the St Joseph Help Desk','src','images/cms/HelpDeskICO','wmode', 'transparent','quality','high','pluginspage', 'https://www.macromedia.com/go/getflashplayer','movie','images/cms/HelpDeskICO' ); 
//end AC code
</script><noscript><object type="application/x-shockwave-flash"
data="c.swf?path=images/cms/HelpDeskICO.swf" 
width="35" height="35">
<param name="wmode" value="transparent" />
<param name="movie" 
value="c.swf?path=images/cms/HelpDeskICO.swf" />
</object></noscript>
 
 
</a>
 
 
 
 
 
 
 
<a onClick="javascript:location.href='https://www.sjrmc.org/Core/index.php?mact=Printing,m5,printpage,1&amp;m5showbutton=1&amp;m5script=1&amp;m5returnid=93&amp;page=93'" class='noprint'  onmousedown="javascript:toggleDiv('hideMe3')">
 
<script type="text/javascript"> 
AC_FL_RunContent( 'codebase', 'https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0','width','35','height','35','title','Get Printable View','src','/Core/modules/Printing/PrintICON','wmode', 'transparent','quality','high','pluginspage', 'https://www.macromedia.com/go/getflashplayer','movie','/Core/modules/Printing/PrintICON' ); 
//end AC code
</script><noscript><object type="application/x-shockwave-flash"
data="c.swf?path=/Core/modules/Printing/PrintICON.swf" 
width="35" height="35">
<param name="wmode" value="transparent" />
<param name="movie" 
value="c.swf?path=/Core/modules/Printing/PrintICON.swf" />
</object></noscript>
 
 
</a>
 
</div>
         <h2>Job Application</h2>
////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////The Div switching functions
//////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////
         <span id='AS1'  style="display:block;"><br/>
<br/>
Welcome to St Joes Job Application Area<br/>
Please Choose From these options:</span><br/>
<br/>
<span id="inputTypeContainer" class="inputTypeContainer"> <span class="inputType">
<input name="br" type="radio" onClick="SetHTML1('a3')">
By Hand</span> <span class="inputType">
<input name="br" type="radio" onClick="SetHTML1('b3')">
Online</span> <span class="inputType">
<input name="br" type="radio" onClick="SetHTML1('c3')">
Other</span> </span> <br/>
<span id='AS2'  style="display:block;"><br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
</span> <span id='a3' style="display:none;"><span class="inputTypeNotice1">- You Chose By Hand</span><br/>
<b>Download the PDF</b><br/>
<a href="uploads/Docs/PersonnelDepartment/sjrmcemploymentapplication.pdf">Employment Application PDF</a><br/>
<br/>
<a href="uploads/Docs/PersonnelDepartment/Benefit_Summary_02_00_08.pdf">Benefit Summary PDF</a> <br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
</span> <span id='b3'  style="display:none;"> <span class="inputTypeNotice2">- You Chose Online</span><br/>
<h3>You are Not Logged in Please Log-in</h3>
 <form id="m6moduleform_2" method="post" action="index.php"><div class="hidden"><input type="hidden" name="mact" value="FrontEndUsers,m6,do_login,1" /><input type="hidden" name="m6returnid" value="93" /><input type="hidden" name="page" value="93" /></div>
 
<p>Username:<input type="text" name="m6feu_input_username" id="m6feu_input_username" value="" size="20" maxlength="20" />
<br/>
  Password:&nbsp;
  <input type="password" name="m6feu_input_password" value="" size="20" maxlength="20" />
<br/>
    Enter the text from the image: <br/>
  <input type="text" name="m6input_captcha" id="m6input_captcha" value="" size="10" maxlength="255" />
<br/>
  <input type="hidden" name="public_key" value="59f23" />
<img class="captchapict" src="/Core/tmp/cache/hn_captcha_59f23.jpg" width="198" height="72" alt="This is a captcha-picture. It is used to prevent mass-access by robots. (see: www.captcha.net)" title="" />
<a href="javascript:location.reload(true);" target="_self">Refresh Image</a><br/>
  <a href="https://www.sjrmc.org/Core/my-account/whydoyouneedtoenterinthiscode" target="_self">Why do you need to enter in this code?</a><br/>
      <input name="m2feu_btn_login" value="Sign in" type="submit" class="signin_button"/>
  <br/>
  <a href="https://www.sjrmc.org/Core/index.php?mact=FrontEndUsers,m6,default,1&amp;m6form=forgotpw&amp;m6returnto=93&amp;m6returnid=93&amp;page=93">Forgot Your Password?</a><br/>
  <a href="https://www.sjrmc.org/Core/index.php?mact=FrontEndUsers,m6,default,1&amp;m6form=lostusername&amp;m6returnto=93&amp;m6returnid=93&amp;page=93">Forgot Your Login Details?</a></p>
</form>
 
<!-- Logout form template -->
<font size="2">
<div class="hr">Are you a New User?<br/>
  <a href="https://www.sjrmc.org/Core/employment-opportunities/applicant-registration"> Register Here</a></div>
</font>
 
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
 </span> <span id="c3"  style="display:none;"> <span class="inputTypeNotice3">- You Chose Other</span><br/>
<b>This Option escapes me at the moment </b><br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
</span>
<!-- //EOForm/////////////////////////////////////-->
<a href="https://www.sjrmc.org/Core/help/BrowserCompatibilities">If you are haveing any issues visit Browser Compatibilities</a>
   <br />
////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////End of The Div switching functions
//////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////
 	 <div class="hr"><table width="100%" border="0" cellspacing="0" cellpadding="0" summary="Qiuck Contact List">
  <tr>
    <td align="right"><span style="color:#00194d;font-weight: bold;"><a href="https://www.sjrmc.org/Core/about-st-joseph/contact-st-joseph" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Contact Us</a> &bull; <a href="https://www.sjrmc.org/Core/DoctorDirectory" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Find A Doctor</a> &bull; <a href="https://www.sjrmc.org/Core/services/CHERC" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Join A Class</a></span></td>
  </tr>
</table></div>
 
         <div>
<table border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td width="9px"><img src="images/Aceess_Link_left.gif" width="9" height="51" alt=" "/></td>
    <td class="AccessLink"><span class="AccessLinktitle" >Accessibility  links</span><br/><span class="AccessLinks" >Previous page: <a href="https://www.sjrmc.org/Core/employment-opportunities" title="A career in the medical health field is one of the most rewarding careers there is! If you would like to be a part of the team of people that is committed to life, then we want to hear from you. ">Employment Opportunities</a><br/> 
Next page: <a href="https://www.sjrmc.org/Core/DoctorDirectory" title="Find a Doctor">Find a Doctor</a></span>
</td>
    <td width="41px"><img src="images/Aceess_Link_right.gif" width="41" height="51" alt=" "/></td>
  </tr>
</table>
 
         </div>
         	 
      <hr class="accessibility" />
      </div>
	     </div>
         <div id="footer">
<br/>This site was Created by <a href="http://digitalbarn.tv/"><font color="#ffffff"><font color="#ff0000">d</font>igital <font color="#ff0000">b</font>arn productions</font></a><br/>
Managed by <script type="text/javascript"><!-- 
document.write("<a ", "href=\"", "&#109;a&#105;&#108;", "t&#111;", ":","dbjeremy", "&#64;","cableone.net","?subject=","From St joe", "\"><font style=\"","color:#ffffff","\">","Jeremy Bass","</", "font>", "</", "a>");
//--></script><br/><br/>
   </div>
 
<div id="hideMe3" style="
display: none;
position: fixed;
bottom: 0;
left: 0;
z-index: 100;
">
 
<script type="text/javascript"> 
AC_FL_RunContent( 'codebase', 'https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0','width','362','height','35','title','Header','src','/Core/elements/pageLoading','wmode', 'transparent','quality','high','pluginspage', 'https://www.macromedia.com/go/getflashplayer','movie','/Core/elements/pageLoading' ); 
//end AC code
</script><noscript><object type="application/x-shockwave-flash"
data="c.swf?path=/Core/elements/pageLoading.swf" 
width="362" height="35">
<param name="wmode" value="transparent" />
<param name="movie" 
value="c.swf?path=/Core/elements/pageLoading.swf" />
</object></noscript></div> 
 
 
   </div>
</td>
    <td id="rightGRD">
 
</td>
  </tr>
</table>
</body>
</html>
<!-- 0.711466 / 118 -->
 
 
[+][-]07.06.2008 at 02:21PM PDT, ID: 21941681

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 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.06.2008 at 02:29PM PDT, ID: 21941703

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 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.06.2008 at 02:53PM PDT, ID: 21941752

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 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.06.2008 at 03:37PM PDT, ID: 21941864

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 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.06.2008 at 04:01PM PDT, ID: 21941931

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 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.07.2008 at 03:09AM PDT, ID: 21943722

View this solution now by starting your 7-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: JavaScript
Tags: Javascript
Sign Up Now!
Solution Provided By: HonorGod
Participating Experts: 2
Solution Grade: A
 
 
[+][-]07.07.2008 at 11:18AM PDT, ID: 21947325

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 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.07.2008 at 11:27AM PDT, ID: 21947399

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 7-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628