[x]
Posted via EE Mobile

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

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

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

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

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

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

Thank you!

8.3

Get Div id

Asked by jeremyBass26 in JavaScript

Tags: javasrcipt

Hello, I am wanting to read this div

<div id="image-switch" class="image-switch">
<div style="line-height:13px; font-size:16px; vertical-align:top;">
<div id="Blank"></div>
   <div id="LarryDavis_f_1_400_1"><img src="uploads/images/catalog/LarryDavis_f_1_400_1.jpg" title="Larry Davis, M.D." alt="Larry Davis, M.D."/></div>
    <div id="anesthesiology_ct_1_90_1"><img src="uploads/images/catalog/anesthesiology_ct_1_90_1.jpg" title="Thomas J. Grissom, M.D." alt="Thomas J. Grissom, M.D."/></div>
   </div></div></div><div style="clear:right;"></div>


and pull out the ids so that it can be writen at the top... and one know how to fix this... I have it working in another area but it was reading a form... and now that i'm try to make it read a div it is not functioning any more... thanks for the help on this...
jeremyBass

full page

look for <!--BO////////////////////////////////// area One -->
<!--BO////////////////////////////////// area Two -->
(I posted the whole thing so a solution wouldn't conflict with the rest of the stuff)
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:
<!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="/Core/modules/Album/css/stylesheet.css" />
<title>St. Joseph Regional Medical Center - Anesthesiology &#124 Lewiston Idaho</title>
<base href="/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="description" content=" 
 
 
      Larry Davis, M.D.  
      Thomas J. Grissom, M.D.  
   
 
 
 ">
<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="30 DAYS"/>
<script type="text/javascript" src="/Core/Scripts/MenuSystem/fsmenu.js"></script>
<!-- Demo CSS layouts for the list menu. Pick your favourite one and customise! -->
<!-- Remove all but one and change "alternate stylesheet" to "stylesheet" to enable -->
<link rel="stylesheet" type="text/css" id="listmenu-o"
  href="/Core/Scripts/MenuSystem/listmenu_o.css" title="Vertical 'Office'" />
<link rel="alternate stylesheet" type="text/css" id="listmenu-v"
  href="/Core/Scripts/MenuSystem/listmenu_v.css" title="Vertical 'Earth'" />
<link rel="alternate stylesheet" type="text/css" id="listmenu-h"
  href="/Core/Scripts/MenuSystem/listmenu_h.css" title="Horizontal 'Earth'" />
<!-- Fallback CSS menu file allows list menu operation when JS is disabled. -->
<!-- This is automatically disabled via its ID when the script kicks in. -->
<link rel="stylesheet" type="text/css" id="fsmenu-fallback"
  href="/Core/Scripts/MenuSystem/listmenu_fallback.css" />
<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';
    }
	}
  document.test.key.value = window.event.keyCode;
}
//-->
 
</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 src="Scripts/AC_RunActiveContent.js" language="JavaScript" type="text/JavaScript"></script>
 
 
 
 
 
 
<!--BO////////////////////////////////// area One -->
<!--BO////////////////////////////////// area One -->
<!--BO////////////////////////////////// area One -->
<!--BO////////////////////////////////// area One -->
<script language="JavaScript"  type="text/javascript">
<!--
function switch1(div) {
if (document.getElementById('blank')) {
for(var i=0; i<option.length; i++) 
{ obj=document.getElementById(option[i]);
obj.style.display=(option[i]==div)? "block" : "none"; }
}
}
//
function switchImg(i){
document.images["blank"].src = i;
}
 
 
//-->
</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 type="text/javascript"><!-- 
document.write("<style type=\"text/css\">");
for(var i=0; i<option.length; i++) 
document.write("#", option[i], ",");
}
document.write("#", "Blank");
 
document.write("{");
document.write("display:none;");
document.write("}");
document.write("-->");
document.write("</style>");
//--></script>
 
<!--EO////////////////////////////////// area One -->
<!--EO////////////////////////////////// area One -->
<!--EO////////////////////////////////// area One -->
<!--EO////////////////////////////////// area One -->
 
 
<link rel="stylesheet" type="text/css" media="screen" href="/Core/stylesheet.php?templateid=20&amp;mediatype=screen" />
<link rel="stylesheet" type="text/css" media="print" href="/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="/Core/" />
<link rel="prev" title="Find a Doctor" href="/Core/DoctorDirectory" />
<link rel="next" title="LarryDavis" href="/Core/DoctorDirectory/Anesthesiology/LarryDavis" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="/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/Anesthesiology#menu_vert" title="Skip to navigation" accesskey="n">Skip to navigation</a></li>
          <li><a href="/Core/DoctorDirectory/Anesthesiology#main" title="Skip to content" accesskey="s">Skip to content</a></li>
        </ul>
        <hr class="accessibility" />
        <div id="header">
          <h1><a href="/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="/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="125" />
                  </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="/Core/DoctorDirectory">Find a Doctor</a> » <span class="lastitem">Anesthesiology</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="/Core/" accesskey="1" ><dfn>1: </dfn>St. Joseph Home</a> </li>
                <li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="/Core/services" ><dfn>2: </dfn>Services</a>
                  <ul>
                    <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/services/auxiliary-volunteer" ><dfn>2.1: </dfn>Auxiliary Volunteer</a> </li>
                    <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/services/regional-cancer-center" ><dfn>2.2: </dfn>Regional Cancer Center</a> </li>
                    <li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="/Core/services/CHERC" ><dfn>2.3: </dfn>Resource Center</a>
                      <ul>
                        <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/services/CHERC/cpr" ><dfn>2.3.1: </dfn>CPR</a> </li>
                        <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/services/CHERC/first-aid" ><dfn>2.3.2: </dfn>First Aid</a> </li>
                        <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/services/CHERC/family-beginnings-classes" ><dfn>2.3.3: </dfn>Family Beginnings Classes</a> </li>
                        <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/services/CHERC/diabetes-center-education" ><dfn>2.3.4: </dfn>Diabetes Center-Education</a> </li>
                        <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/services/CHERC/tobacco-free-you" ><dfn>2.3.5: </dfn>Tobacco Free You</a> </li>
                        <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/services/CHERC/nutrition-education" ><dfn>2.3.6: </dfn>Nutrition Education</a> </li>
                        <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/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="/Core/staff-content/health-news"  target="_self"><dfn>2.5: </dfn>Health News</a> </li>
                  </ul>
                </li>
                <li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="/Core/family-beginnings" ><dfn>3: </dfn>Family Beginnings</a>
                  <ul>
                    <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/family-beginnings/classes-groups" ><dfn>3.1: </dfn>Classes and Groups</a> </li>
                    <li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="/Core/family-beginnings/newborns" ><dfn>3.2: </dfn>Newborns</a>
                      <ul>
                        <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/family-beginnings/newborns/2007-2" ><dfn>3.2.1: </dfn>2007</a> </li>
                        <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/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="/Core/events-calendar" ><dfn>4: </dfn>Events Calendar</a>
                  <ul>
                    <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/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="/Core/about-st-joseph" ><dfn>5: </dfn>About St. Joseph</a>
                  <ul>
                    <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/about-st-joseph/contact-st-joseph" ><dfn>5.1: </dfn>Contact St. Joseph</a> </li>
                    <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/about-st-joseph/accreditations" ><dfn>5.2: </dfn>Accreditations</a> </li>
                    <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/about-st-joseph/publications" ><dfn>5.3: </dfn>Publications</a> </li>
                    <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/about-st-joseph/news" ><dfn>5.4: </dfn>News</a> </li>
                    <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/about-st-joseph/awards" ><dfn>5.5: </dfn>Awards</a> </li>
                  </ul>
                </li>
                <li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="/Core/foundation" ><dfn>6: </dfn>Foundation</a>
                  <ul>
                    <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/foundation/board-members" ><dfn>6.1: </dfn>Board Members</a> </li>
                    <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/foundation/foundation-projects" ><dfn>6.2: </dfn>CENTURY CLUB</a> </li>
                    <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/foundation/foundation-projects-2" ><dfn>6.3: </dfn>Foundation Projects</a> </li>
                  </ul>
                </li>
                <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/gift-shop" ><dfn>7: </dfn>Gift Shop</a> </li>
                <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/employment-opportunities" ><dfn>8: </dfn>Employment Opportunities</a> </li>
                <li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="/Core/DoctorDirectory" ><dfn>10: </dfn>Find a Doctor</a>
                  <ul>
                    <li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="/Core/DoctorDirectory/Anesthesiology" ><dfn>10.1: </dfn>Anesthesiology</a>
                      <ul>
                        <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/DoctorDirectory/Anesthesiology/LarryDavis" ><dfn>10.1.1: </dfn>Larry Davis, M.D.</a> </li>
                        <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/DoctorDirectory/Anesthesiology/thomas-j-grissom-m-d" ><dfn>10.1.2: </dfn>Thomas J. Grissom, M.D.</a> </li>
                      </ul>
                    </li>
                    <li><a onmousedown="javascript:toggleDiv('hideMe3')"
href="/Core/DoctorDirectory/cardiology" ><dfn>10.2: </dfn>Cardiology</a>
                      <ul>
                        <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/DoctorDirectory/cardiology/lee-gould-m-d" ><dfn>10.2.1: </dfn>Lee Gould, M.D. </a> </li>
                      </ul>
                    </li>
                    <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/DoctorDirectory/dentistry" ><dfn>10.3: </dfn>Dentistry</a> </li>
                    <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/DoctorDirectory/dermatology" ><dfn>10.4: </dfn>Dermatology</a> </li>
                    <li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="/Core/DoctorDirectory/emergency-medicine" ><dfn>10.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="/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="/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="/Core/news/3/88/Brenda-McIntosh-2008-Employee-of-the-Year">More</a>]</span><span style="float:right; line-height:13px;"><a href="/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="../pacs.png" height="38" alt="PACS Link"/></a> </div>
            <div style="text-align:right;" > <br/>
              <a href="/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="/Core/services/CHERC/"><img border="0" width="180" src="/St_Joe_Core/images/cherc_DB_flat.png" alt="Community Health Education Resource Center" height="63" /></a> <br/>
              <br/>
              <a target="_self" href="/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="help" target="_self" onmousedown="javascript:toggleDiv('hideMe3')"><img src="images/cms/help.gif" alt="Help" width="28" height="28" border="0"/></a><a href='/Core/index.php?mact=Printing,m5,printpage,1&amp;m5showbutton=1&amp;m5script=1&amp;m5returnid=125&amp;page=125' class='noprint'  > <img src='modules/Printing/printbutton.png' alt='Print this page' /> </a> </div>
            <h2>Anesthesiology</h2>
            <div class="category_items">
              <ul id="CHERClist" style="line-height:13px; font-size:16px; vertical-align:top; float:left;">
                <li><a href="/Core/DoctorDirectory/Anesthesiology/LarryDavis" onmouseover="switch1('LarryDavis_f_1_400_1');" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Larry Davis, M.D.</a></li>
                <li><a href="/Core/DoctorDirectory/Anesthesiology/thomas-j-grissom-m-d" onmouseover="switch1('anesthesiology_ct_1_90_1');" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Thomas J. Grissom, M.D.</a></li>
              </ul>
              
              <!--BO////////////////////////////////// area Two -->
<!--BO////////////////////////////////// area Two -->
<!--BO////////////////////////////////// area Two -->
<!--BO////////////////////////////////// area Two -->
              
              
              <div id="image-switch" class="image-switch">
                <div style="line-height:13px; font-size:16px; vertical-align:top;">
                  <div id="Blank"></div>
                  <div id="LarryDavis_f_1_400_1"><img src="uploads/images/catalog/LarryDavis_f_1_400_1.jpg" title="Larry Davis, M.D." alt="Larry Davis, M.D."/></div>
                  <div id="anesthesiology_ct_1_90_1"><img src="uploads/images/catalog/anesthesiology_ct_1_90_1.jpg" title="Thomas J. Grissom, M.D." alt="Thomas J. Grissom, M.D."/></div>
                </div>
              </div>
            </div>
            <div style="clear:right;"></div>
            <script type="text/javascript">
var option = new Array ();
var x= document.obj.getElementById("image-switch");
for (var i=0;i<x.length;i++)
{	
option.push(x.obj[i].id);
}</script>
 
 <!--EO////////////////////////////////// area Two -->
<!--EO////////////////////////////////// area Two -->
<!--EO////////////////////////////////// area Two -->
<!--EO////////////////////////////////// area Two -->
 
            <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="about-st-joseph/contact-st-joseph/" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Contact Us</a> &bull; <a href="find-a-doctor/" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Find A Doctor</a> &bull; <a href="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="/Core/DoctorDirectory" title="Find a Doctor">Find a Doctor</a><br/>
                    Next page: <a href="/Core/DoctorDirectory/Anesthesiology/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("<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>
<!-- 1.618303 / 129 -->
 
Related Solutions
Keywords: Get Div id
 
Loading Advertisement...
 
[+][-]06/12/08 09:00 PM, ID: 21775924Author Comment

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

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

 
[+][-]06/12/08 11:22 PM, ID: 21776347Expert Comment

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

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

 
[+][-]06/13/08 04:18 AM, ID: 21777653Expert Comment

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

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

 
[+][-]06/13/08 04:18 AM, ID: 21777656Expert Comment

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

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

 
[+][-]06/13/08 10:04 AM, ID: 21780780Author Comment

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

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

 
[+][-]06/13/08 11:04 AM, ID: 21781315Expert Comment

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

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

 
[+][-]06/13/08 11:19 AM, ID: 21781442Author Comment

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

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

 
[+][-]06/13/08 11:52 AM, ID: 21781729Expert Comment

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

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

 
[+][-]06/13/08 11:59 AM, ID: 21781781Expert Comment

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

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

 
[+][-]06/13/08 11:59 AM, ID: 21781784Expert Comment

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

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

 
[+][-]06/13/08 12:01 PM, ID: 21781803Author Comment

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

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

 
[+][-]06/13/08 12:07 PM, ID: 21781854Expert Comment

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

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

 
[+][-]06/13/08 12:16 PM, ID: 21781926Expert Comment

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

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

 
[+][-]06/13/08 12:16 PM, ID: 21781932Author Comment

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

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

 
[+][-]06/13/08 12:20 PM, ID: 21781960Expert Comment

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

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

 
[+][-]06/13/08 01:09 PM, ID: 21782379Author Comment

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

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

 
[+][-]06/13/08 01:21 PM, ID: 21782457Expert Comment

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

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

 
[+][-]06/13/08 01:59 PM, ID: 21782728Author Comment

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

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

 
[+][-]06/13/08 02:19 PM, ID: 21782895Author Comment

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

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

 
[+][-]06/13/08 02:28 PM, ID: 21782951Author Comment

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

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

 
[+][-]06/13/08 04:54 PM, ID: 21783480Expert Comment

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

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

 
[+][-]06/13/08 05:00 PM, ID: 21783506Author Comment

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

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

 
[+][-]06/13/08 05:15 PM, ID: 21783540Expert Comment

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

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

 
[+][-]06/13/08 05:23 PM, ID: 21783560Author Comment

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

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

 
[+][-]06/13/08 05:59 PM, ID: 21783637Expert Comment

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

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

 
[+][-]06/13/08 06:35 PM, ID: 21783691Author Comment

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

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

 
[+][-]06/16/08 02:24 PM, ID: 21797657Author Comment

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

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

 
[+][-]06/17/08 04:11 AM, ID: 21801686Expert Comment

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

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

 
[+][-]06/17/08 08:41 AM, ID: 21804285Author Comment

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

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

 
[+][-]06/17/08 09:21 AM, ID: 21804726Expert Comment

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

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

 
[+][-]06/17/08 08:31 PM, ID: 21809795Author Comment

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

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

 
[+][-]06/18/08 05:09 AM, ID: 21811975Expert Comment

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

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

 
[+][-]06/18/08 12:49 PM, ID: 21816425Author Comment

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

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

 
[+][-]06/18/08 01:58 PM, ID: 21817153Author Comment

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

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

 
[+][-]06/18/08 02:32 PM, ID: 21817468Author Comment

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

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

 
[+][-]06/23/08 12:11 PM, ID: 21849299Author Comment

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

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

 
[+][-]06/24/08 04:16 AM, ID: 21854368Expert Comment

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

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

 
[+][-]06/24/08 10:38 AM, ID: 21858236Author Comment

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

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

 
[+][-]06/24/08 11:05 AM, ID: 21858487Expert Comment

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

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

 
[+][-]06/24/08 12:11 PM, ID: 21859271Author Comment

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

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

 
[+][-]06/24/08 01:54 PM, ID: 21860299Expert Comment

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

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

 
[+][-]06/25/08 08:58 AM, ID: 21867085Author Comment

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

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

 
[+][-]06/25/08 09:26 AM, ID: 21867381Expert Comment

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

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

 
[+][-]06/25/08 09:49 AM, ID: 21867606Author Comment

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

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

 
[+][-]06/25/08 10:53 AM, ID: 21868182Expert Comment

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

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

 
[+][-]06/25/08 11:40 AM, ID: 21868597Author Comment

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

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

 
[+][-]06/25/08 12:05 PM, ID: 21868854Expert Comment

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

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

 
[+][-]06/25/08 12:18 PM, ID: 21868952Author Comment

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

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

 
[+][-]06/25/08 12:39 PM, ID: 21869147Expert Comment

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

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

 
[+][-]06/25/08 01:40 PM, ID: 21869657Author Comment

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

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

 
[+][-]06/25/08 01:49 PM, ID: 21869738Accepted Solution

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

About this solution

Zone: JavaScript
Tags: javasrcipt
Sign Up Now!
Solution Provided By: HonorGod
Participating Experts: 2
Solution Grade: A
 
[+][-]06/25/08 02:13 PM, ID: 21869938Author Comment

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

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

 
[+][-]06/25/08 02:36 PM, ID: 21870074Expert Comment

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

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

 
[+][-]06/25/08 02:43 PM, ID: 21870119Author Comment

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

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

 
[+][-]06/25/08 09:38 PM, ID: 21871884Author Comment

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

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

 
[+][-]06/26/08 03:32 AM, ID: 21873294Expert Comment

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

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

 
[+][-]06/26/08 09:01 AM, ID: 21876101Author Comment

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

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

 
[+][-]06/29/08 05:44 AM, ID: 21893786Expert Comment

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

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

 
[+][-]06/29/08 10:47 AM, ID: 21894808Author Comment

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

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

 
[+][-]06/29/08 12:15 PM, ID: 21895160Expert Comment

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

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

 
 
Loading Advertisement...
20091021-EE-VQP-81 / EE_QW_2_20070628