Advertisement

07.09.2008 at 04:34PM PDT, ID: 23552267
[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!

9.3

Bring IE 6 and IE 7 inline

Asked by jeremyBass26 in Cascading Style Sheets (CSS), Hypertext Markup Language (HTML), Internet Explorer Web Browser

Tags:

Hello, I've been try every trick in the book but I can't IE 6 to fully look like IE7! Can some one help here?

Things used to bridge the gap:
iepngfix.htc
css hacks like  _a  *a
and Conditional comments
and the best scripting practices I can write

But I'm still having issues


https://www.sjrmc.org/Core/DoctorDirectory
This and all it's children are affected... mostly it's the png issues but there are some discrepancies between the positioning as well... basically I was wondering if any one had some good ideas on fixing/hide the errors... thanks for the help


Side note: the float box is slated for rewrite to make it move with the mouse, like a tip& and I'm always up for a better way. :-)

scource code of pageStart 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:
<!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 - Find a Doctor &#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="Find a Doctor" />
	
		<meta name="description" content=" 
 
 
         
                 
 Specialties"/>
	<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="Wed, 09 Jul 2008 15:59:23 -0700 MST" />
	<meta name="revised" content="Wed, 09 Jul 2008 15:59:23 -0700 MST" />
 
 
 
 
 
<!--</script>-->
<script type="text/javascript" src="/Core/Scripts/AC_RunActiveContent.js"></script>
<script type="text/javascript" src="/Core/Scripts/shadowbox/build/adapter/shadowbox-base.js"></script>
<script type="text/javascript" src="/Core/Scripts/shadowbox/build/shadowbox.js"></script>
 
<script type="text/javascript" src="/Core/Scripts/MenuSystem/fsmenu.js"></script>
 
<script type="text/javascript" src="/Core/Scripts/jquery-1.2.6.js"></script>
<script type="text/javascript" src="/Core/Scripts/jquery.cornflex.js"></script>
 
<link rel="stylesheet" href="/Core/Scripts/MenuSystem/listmenu_o.css" type="text/css" />
<link rel="stylesheet" href="/Core/Scripts/MenuSystem/listmenu_fallback.css" type="text/css" />
<link rel="stylesheet" href="/Core/Scripts/cornflex-common.css" type="text/css" />
 
<script language="JavaScript"  type="text/javascript">
var req=null;
function GetXmlHttpObject()
{
var xmlHttp=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp;
} 
function startLoad(source,divid) { 
    req = GetXmlHttpObject();
    if( req )
    {
    	req.open('GET', source, true); 
    	req.onreadystatechange=function(){ finishLoad(divid); };
    	req.send(null); 
    }
} 
function finishLoad(divid) { 
    if (req.readyState==4) {   // request is done 
                if (req.status==200) { // "OK"
                 //alert("Site  Status 200")
				 toggleDiv(divid);
				 
            } else{
            //alert("Site  Status NOT 200")
            }
    } 
}
 
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]-->
 
 
 
 
 
<link rel="stylesheet" type="text/css" media="screen" href="https://www.sjrmc.org/Core/stylesheet.php?templateid=35&amp;mediatype=screen" />
<link rel="stylesheet" type="text/css" media="print" href="https://www.sjrmc.org/Core/stylesheet.php?templateid=35&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="Enjoy one of the easy applications you'll evern have to fill out.  This RIA application is made to protect you in the highest degree." href="https://www.sjrmc.org/Core/employment-opportunities/interactive-job-application" />
<link rel="next" title="LarryDavis" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Anesthesia/LarryDavis" />
 
 
 
<script language="JavaScript"  type="text/javascript">
<!--
// Add a mouseover="updateDivs(this)" to all your image_switch divs
 
function updateDivs(divId) {
  var image_switch = document.getElementById( 'image-switch' );
  var divs = image_switch.getElementsByTagName( 'DIV' );
  for ( var i = 0; i < divs.length; i++ ) {
    if (divs[i].style.display == 'block') {
      divs[i].style.display = 'none';
      // break; // Remove the comment on this line if you only want FIRST div to hide. Now ALL hides before correct one shows
    }
  }
  document.getElementById(divId).style.display = 'block';
}
 
//-->
</script>
<style type="text/css">
<!--
#image-switch div{float:right;}
#image-switch ul {
margin:0 0 0 20px; 
color:red; 
list-style-type:none;
}
#image-switch li {
padding:10px;
}
-->
</style>
 
 
<script language="JavaScript"  type="text/javascript">
$(document).ready(function(){
                $("h6").cornflex('whitebox', {
        omega: 20,
        image_t: '/Core/Scripts/RoundedBoxes/whitebox_t.png',
        image_r: '/Core/Scripts/RoundedBoxes/whitebox_r.png',
        image_b: '/Core/Scripts/RoundedBoxes/whitebox_b.png',
        image_l: '/Core/Scripts/RoundedBoxes/whitebox_l.png',
        alpha: 12,
        beta: 18,
        gamma: 24,
        delta: 18
                });
        });
</script>
 
 
<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/DoctorDirectory#menu_vert" title="Skip to navigation" accesskey="n">Skip to navigation</a></li>
      <li><a href="/Core/DoctorDirectory#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="75" /></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: <span class="lastitem">Find a Doctor</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/Dir_Gastroenterology" ><dfn>9.8: </dfn>Gastroenterology</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_General-Surgery" ><dfn>9.9: </dfn>General Surgery</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Gynecology" ><dfn>9.10: </dfn>Gynecology</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Hematology" ><dfn>9.11: </dfn>Hematology</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Hospitalist-Medicine" ><dfn>9.12: </dfn>Hospitalist Medicine</a>
 
 
	<ul>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Hospitalist-Medicine/michael-c-minick" ><dfn>9.12.1: </dfn>Michael C. Minick, MD</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Hospitalist-Medicine/barbara-kammer" ><dfn>9.12.2: </dfn>Barbara Kammer, MD</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Hospitalist-Medicine/thomas-r-strobel" ><dfn>9.12.3: </dfn>Thomas R. Strobel, MD</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Hospitalist-Medicine/william-c-dir" ><dfn>9.12.4: </dfn>William C. Dir</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Hospitalist-Medicine/jeff-harris" ><dfn>9.12.5: </dfn>Jeff Harris, MD</a>
 
 
	</li></ul></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="startLoad('https://www.sjrmc.org/Core/help','hideMe3'); location.href='https://www.sjrmc.org/Core/help'; return false;">
 
 
 
<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 href='https://www.sjrmc.org/Core/index.php?mact=Printing,m5,printpage,1&amp;m5showbutton=1&amp;m5script=1&amp;m5returnid=75&amp;page=75'  onmousedown="startLoad('https://www.sjrmc.org/Core/index.php?mact=Printing,m5,printpage,1&amp;m5showbutton=1&amp;m5script=1&amp;m5returnid=75&amp;page=75','hideMe3'); location.href='https://www.sjrmc.org/Core/index.php?mact=Printing,m5,printpage,1&amp;m5showbutton=1&amp;m5script=1&amp;m5returnid=75&amp;page=75'; return false;" >
 
<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>Find a Doctor</h2>
         
<div class="category_items">
<div class="cornflex whitebox">
        <div class="t">
                <div class="c">
<h3>Specialties</h3><div class="hr"></div>
<ul id="DocList">
    <li><a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Gastroenterology" onmouseover="updateDivs('')" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Gastroenterology</a></li>
    <li><a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_General-Surgery" onmouseover="updateDivs('')" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">General Surgery</a></li>
    <li><a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Gynecology" onmouseover="updateDivs('')" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Gynecology</a></li>
    <li><a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Hematology" onmouseover="updateDivs('')" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Hematology</a></li>
    <li><a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Hospitalist-Medicine" onmouseover="updateDivs('Dir_Hospitalist-Medicine')" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Hospitalist Medicine</a></li>
  </ul>
                </div>
        </div>
        <div class="r"></div>
        <div class="b"></div>
        <div class="l"></div>
</div>
</div>
 
<div id="image-switch" class="image-switch">
<div style="line-height:13px; font-size:16px; margin-left:250px;margin-top:-100px; width:300; float:right;">
<div id="Blank" style="display:block;"></div>
   <div id="" style="display:none;">
<span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class="titleArea">
<div class="cornflex whitebox">
        <div class="t">
                <div class="c">
                      There are : 5 Doctors
                </div>
        </div>
        <div class="r"></div>
        <div class="b"></div>
        <div class="l"></div>
</div>
 
 
 
</span></span>
</div>
    <div id="" style="display:none;">
<span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class="titleArea">
<div class="cornflex whitebox">
        <div class="t">
                <div class="c">
                      There are : 5 Doctors
                </div>
        </div>
        <div class="r"></div>
        <div class="b"></div>
        <div class="l"></div>
</div>
 
 
 
</span></span>
</div>
    <div id="" style="display:none;">
<span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class="titleArea">
<div class="cornflex whitebox">
        <div class="t">
                <div class="c">
                      There are : 5 Doctors
                </div>
        </div>
        <div class="r"></div>
        <div class="b"></div>
        <div class="l"></div>
</div>
 
 
 
</span></span>
</div>
    <div id="" style="display:none;">
<span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class="titleArea">
<div class="cornflex whitebox">
        <div class="t">
                <div class="c">
                      There are : 5 Doctors
                </div>
        </div>
        <div class="r"></div>
        <div class="b"></div>
        <div class="l"></div>
</div>
 
 
 
</span></span>
</div>
    <div id="Dir_Hospitalist-Medicine" style="display:none;">
<span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class="titleArea">
<div class="cornflex whitebox">
        <div class="t">
                <div class="c">
                      There are : 5 Doctors
                </div>
        </div>
        <div class="r"></div>
        <div class="b"></div>
        <div class="l"></div>
</div>
 
 
 
</span></span>
</div>
   </div></div> 
 
 
<div style="clear:right;"></div>  <br />
 	 <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/interactive-job-application" title="Enjoy one of the easy applications you'll evern have to fill out.  This RIA application is made to protect you in the highest degree.">Job Application</a><br/> 
Next page: <a href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Anesthesia/LarryDavis" title="LarryDavis">Larry Davis, M.D.</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("<span>" , "", " </", "span><a ", "href=\"", "&#109;a&#105;&#108;", "t&#111;", ":","dbjeremy", "&#64;","cableone.net","?subject=","From St joe", "\"><font style=\"","color:#ffffff","\">","Jeremy Bass","</", "font>", "</", "a>", "</", "span>");
//--></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>
[+][-]07.09.2008 at 05:12PM PDT, ID: 21969492

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.09.2008 at 09:49PM PDT, ID: 21970486

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

Zones: Cascading Style Sheets (CSS), Hypertext Markup Language (HTML), Internet Explorer Web Browser
Tags: CSS png
Sign Up Now!
Solution Provided By: RedKelvin
Participating Experts: 1
Solution Grade: A
 
 
[+][-]07.10.2008 at 05:38PM PDT, ID: 21978927

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.

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