Link to home
Start Free TrialLog in
Avatar of jeremyBass26
jeremyBass26Flag for United States of America

asked on

Fixing differences in IE7, IE6, and FF

Hello, I ok I have been at this for a bit now and can't seem to get this one section to line up... look that same and function the same... I need this fixed and I'm running out of time so , would any one have the know how to bring them in line even if they are hack for now.... this uses jquery and I'm trying to use it were I can to lighten up the pages...

So to the Issues... IE7 works as expected, with only one problem if you view it higher the 1028... Minor though... IE6 well it does look right at all, and FF it works like IE7 but the float is under the links... not good... well I'm sure this is an easy one for a person more use to using jquery and or know a good deal on cross browser tricks and fixes... It already uses the iepngfix.htc in the cornflex-common.css which was in the script already... Also I'm use Conditional comments ... I may just be tripping on the IE6 issues...   thanks for the help here.
jeremyBass

Here is the link
https://www.sjrmc.org/Core/DoctorDirectory

side post thats related
https://www.experts-exchange.com/questions/23554927/Conditional-comments.html
feel free to list some down if you can... I'm gettting a list together on this and think it'll be helpful for all...

Here are the key players in this area:
<script type="text/javascript" src="/Core/Scripts/jquery-1.2.6.pack.js"></script>
<script type="text/javascript" src="/Core/Scripts/jquery.cornflex.js"></script>
<link rel="stylesheet" href="/Core/Scripts/cornflex-common.css" type="text/css" />
<script src="/Core/Scripts/float.js" type="text/javascript"></script> <<I wrote this it's my first real jquery script :-)
<style>
#tooltip{
      position:absolute;
      border:1px solid #333;
      background:#f7f5d1;
      padding:2px 5px;
      color:#333;
      display:none;
      width:200px;
      }      
.cornflex.whitebox{
width:200px;
}
</style>

<!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=" 
 
	
 $(document).ready(function(){  
                $("#cornflex1").cornflex('whitebox_Dira', {
        omega:"/>
	<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="NOFOLLOW,NOINDEX"/>
 
	<meta name="revisit-after" content="3 DAYS"/>
	<meta name="LASTUPDATE" content="Sun, 13 Jul 2008 09:52:58 -0700 MST" />
	<meta name="revised" content="Sun, 13 Jul 2008 09:52:58 -0700 MST" />
 
 
 
 
 
<script type="text/javascript" src="/Core/Scripts/AC_RunActiveContent.js"></script>
<script type="text/javascript" src="/Core/Scripts/jquery-1.2.6.pack.js"></script>
<script type="text/javascript" src="/Core/Scripts/jquery.form.js"></script>
 
<script type="text/javascript" src="/Core/Scripts/shadowbox/build/adapter/shadowbox-base.js"></script>
<script type="text/javascript" src="/Core/Scripts/shadowbox/src/adapter/shadowbox-jquery.js"></script>
<script type="text/javascript"  src="/Core/Scripts/flashembed.pack.js"></script>
<script type="text/javascript" src="/Core/Scripts/shadowbox/build/shadowbox.js"></script>
<script type="text/javascript" src="/Core/Scripts/jquery.cornflex.js"></script>
<script type="text/javascript" src="/Core/Scripts/MenuSystem/fsmenu.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="View a list of the Anesthesiology doctors at St. Joseph Regional Medical Center" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Anesthesia" />
 
 
<script src="/Core/Scripts/float.js" type="text/javascript"></script>
<style>
#tooltip{
	position:absolute;
	border:1px solid #333;
	background:#f7f5d1;
	padding:2px 5px;
	color:#333;
	display:none;
	width:200px;
	}	
.cornflex.whitebox{
width:200px;
}
</style>
<!--[if gte IE 7]><!-->
 <style type="text/css">
div#header h1 a {
   background: url(images/cms/logo1.png) no-repeat 0 12px; 
	}
</style>
<!--<![endif]-->
<!--[if lt IE 7]>
 <style type="text/css">
div#header h1 a {
	/* you can set your own image here */
background: url(images/cms/logoFix.png) no-repeat 0 12px;
	}
</style>
<script src="/Core/Scripts/ie7/IE7.js" type="text/javascript"></script>
<![endif]-->
 
 
 
<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: '';
">
<div id="testFS"></div>
 
<script>
flashembed("testFS", { 
  src: '/Core_images/elements/Test resize.swf', 
  version: [8,0], 
width:775,
   
  /*  
    this- variable points to the supplied parameters  
    and user's version is given as argument 
  */ 
  onFail: function(version)  { 
     return "version " +this.version+ " is required. you have " +version;  
  } 
});	
</script>
</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_Anesthesia" ><dfn>9.1: </dfn>Anesthesia</a>
 
 
	<ul>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Anesthesia/larry-davis" ><dfn>9.1.2: </dfn>Larry Davis, MD</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Anesthesia/thomas-j-grissom" ><dfn>9.1.3: </dfn>Thomas J. Grissom MD</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Anesthesia/craig-flinders" ><dfn>9.1.4: </dfn>Craig Flinders, MD </a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Anesthesia/gary-haas" ><dfn>9.1.5: </dfn>Gary Haas, DO </a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Anesthesia/lyndal-stoutin" ><dfn>9.1.6: </dfn>Lyndal Stoutin, MD</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Anesthesia/thomas-r-boubel" ><dfn>9.1.7: </dfn>Thomas R. Boubel, MD </a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Anesthesia/frank-b-ditto" ><dfn>9.1.8: </dfn>Frank B. Ditto, MD</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Anesthesia/edward-a-vivian" ><dfn>9.1.9: </dfn>Edward A. Vivian, MD</a>
 
 
	</li></ul>
	</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Cardiology" ><dfn>9.2: </dfn>Cardiology</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Dentistry" ><dfn>9.4: </dfn>Dentistry</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Dermatology" ><dfn>9.5: </dfn>Dermatology</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Emergency-Medicine" ><dfn>9.6: </dfn>Emergency Medicine</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Family-Practice" ><dfn>9.7: </dfn>Family Practice</a>
 
</li>
	<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>
 
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Internal-Medicine" ><dfn>9.13: </dfn>Internal Medicine</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Oral-surgery" ><dfn>9.21: </dfn>Oral Surgery</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Plastic-Purgery" ><dfn>9.27: </dfn>Plastic Surgery</a>
 
</li>
	<li><a onmousedown="javascript:toggleDiv('hideMe3')" 
href="https://www.sjrmc.org/Core/DoctorDirectory" ><dfn>9.36: </dfn>Find More Doctors...</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="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">
	
<script language="JavaScript"  type="text/javascript">$(document).ready(function(){  
                $("#cornflex1").cornflex('whitebox_Dira', {
        omega: 20,
        image_t: 'https://www.sjrmc.org/Core/Scripts/RoundedBoxes/whitebox_t-trans.png',
        image_r: 'https://www.sjrmc.org/Core/Scripts/RoundedBoxes/whitebox_r-trans.png',
        image_b: 'https://www.sjrmc.org/Core/Scripts/RoundedBoxes/whitebox_b-trans.png',
        image_l: 'https://www.sjrmc.org/Core/Scripts/RoundedBoxes/whitebox_l-trans.png',
        alpha: 12,
        beta: 18,
        gamma: 24,
        delta: 18
 
                });
 
});
</script>
  <div id="cornflex1">
          <h3 style=" margin-top:-10px; font-size:18px;">Specialties</h3>
        <ul id="DocList">          <li>
 
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Anesthesia" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Anesthesia" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Anesthesia</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Cardiology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Cardiology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Cardiology</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Dentistry" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Dentistry" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Dentistry</a>
        </li>          <li>
 
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Dermatology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Dermatology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Dermatology</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Emergency-Medicine" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Emergency Medicine" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Emergency Medicine</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Family-Practice" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Family Practice" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Family Practice</a>
        </li>          <li>
 
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Gastroenterology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Gastroenterology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Gastroenterology</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_General-Surgery" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> General Surgery" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">General Surgery</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Gynecology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Gynecology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Gynecology</a>
        </li>          <li>
 
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Hematology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Hematology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Hematology</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Hospitalist-Medicine" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Hospitalist Medicine" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Hospitalist Medicine</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Internal-Medicine" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Internal Medicine" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Internal Medicine</a>
        </li>          <li>
 
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Invasive-Cardiology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Invasive Cardiology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Invasive Cardiology</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Nephrology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Nephrology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Nephrology</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Neurology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Neurology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Neurology</a>
        </li>          <li>
 
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Neurosurgery" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Neurosurgery" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Neurosurgery</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Obstetrician" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Obstetrician" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Obstetrician</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Oncology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Oncology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Oncology</a>
        </li>          <li>
 
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Ophthalmology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Ophthalmology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Ophthalmology</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Oral-surgery" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Oral Surgery" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Oral Surgery</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Orthopedic-Surgery" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Orthopedic Surgery" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Orthopedic Surgery</a>
        </li>          <li>
 
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Otolaryngology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Otolaryngology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Otolaryngology</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Pain-Management" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Pain Management" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Pain Management</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Pathology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Pathology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Pathology</a>
        </li>          <li>
 
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Pediatrics" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Pediatrics" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Pediatrics</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Plastic-Purgery" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Plastic Surgery" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Plastic Surgery</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Psychiatry" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Psychiatry" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Psychiatry</a>
        </li>          <li>
 
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Pulmonology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Pulmonology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Pulmonology</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Radiation-Oncology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Radiation Oncology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Radiation Oncology</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Radiology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Radiology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Radiology</a>
        </li>          <li>
 
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Sleep-Medicine" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Sleep Medicine" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Sleep Medicine</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Surgical-Assistant" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Surgical Assistant" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Surgical Assistant</a>
        </li>          <li>
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Urology" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Urology" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Urology</a>
        </li>          <li>
 
          <a name="staticLink" href="https://www.sjrmc.org/Core/DoctorDirectory/Dir_Wound-Care" class="tooltip" title="Currently there are :<br/>5 Doctors in<br/> Wound Care" target="_self" onMouseDown="javascript:toggleDiv('hideMe3')">Wound Care</a>
        </li>        </ul>
<br/>
  
  </div>
</div>
 
<div style="clear:right;"></div>
<br/>
<br/> <br />
 	 <div class="hr"><table width="100%" border="0" cellspacing="0" cellpadding="0" summary="Qiuck Contact List">
 
  <tr>
    <td align="left"><span style="color:#00194d;font-weight: bold; font-size:8px;"><a href="https://www.sjrmc.org/Core/help/BrowserCompatibilities">Browser Compatibilities</a></span></td>
    <td align="right"><span style="color:#00194d;font-weight: bold;font-size:14px;"><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" title="View a list of the Anesthesiology doctors at St. Joseph Regional Medical Center">Anesthesia</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>
<!-- 0.823646 / 226 -->

Open in new window

IE6.gif
IE7.gif
FF.gif
float.js.txt
ASKER CERTIFIED SOLUTION
Avatar of logicalinsanity
logicalinsanity
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jeremyBass26

ASKER

Hello. thanks for the help... I'll try some of those... as far as the png issues goes yes... I am using the twinhelix iepngfix... but it is not working... also that grapgh came linking to twinhelix... I'm not sure if it is just the multipleIE that is still showing the errors or if it is really showing up on IE6... so it does need to be tested out on that... it's just that the pc with IE6 I have is down and I can't tell... I will try the out fixes and see if they help...


And To Anyone... please if you can please snap a screen shot or at least drop me a line and let me know if it is truly messing up in IE6 of it's just the multipleIE install thats making me trip out... thanks for the help have a great day....
I can confirm that ie6 is not displaying properly.

It doesn't appear as if the png fix is working for your link bg either.  Have you been able to successfully apply it to any other graphics?  If not, then it it may just be due to an incorrect implementation.
screen.jpg
Although it doesn't look like yours do - also remember that png fix can't work with repeating backgrounds.
that's what is confusing... it''s not a repeating background... it should be working... here is the cornflex css
cornflex-common.css.txt
I could just be missing it...but I don't see the png fix applied anywhere in your markup...
in the cornflex-common.css it's


.cornflex .t,
.cornflex .r,
.cornflex .b,
.cornflex .l {
      background-color:transparent;
      background-repeat: no-repeat;
      behavior: url(/iepngfix_v2/iepngfix.htc);
}


the file I posted didn't have it... sorry that was an oversight... I had been trying anything and everything... does it still look wrong in IE6... ?  does it to you...


does this page (the source of cornflex) also not work?
http://dev.pnumb.com/svn/cornflex/trunk/index.html
Ok... So I got the png fix working...sort of... It's not working like the http://dev.pnumb.com/svn/cornflex/trunk/index.html shows... and the are not working like th site shows... any ideas...
You got must of them... I picked up the rest so there is no need for this post.... think you could reign in on this one?  could use some better ideas on this...

https://www.experts-exchange.com/questions/23570385/The-most-accurate-way-to-get-mouse-location-for-jquery.html

thanks again