Helpful Information
 
 
Category: JavaScript Development
IE 5.5 problem with Javascript?

Having problems ith IE5.5. Before upgrading everything worked fine in IE 4 or 5. Mabye, someone could see something wrong in the code. Problem is that none of the links work in any of the div tabs except the last div tab. Once you click on the last one, it seems to enable all the links in the other div tabs. Any ideas?


Here is the code:

<html>

<head>
<title>BST Client Connections MOH INFO </title>
<script LANGUAGE="JavaScript" FPTYPE="dynamicoutline">
<!--

// If you want to change this script, you must also make the following
// changes so that FrontPage will not overwrite your new script.
// In the script tag, change type="dynamicoutline" to type="mydynamicoutline"
// In function dynOutlineEnabled, change "dynamicoutline" to "mydynamicoutline"
// Throughout the HTML content, change dynamicoutline to mydynamicoutline
// Change function dynOutline to function mydynOutline in the script
// In the body tag, change onclick="dynOutline()" to onclick="mydynOutline()"
function getControlTag(src)
{

var TRok = false

while ("HTML" != src.tagName)
{
if ("IMG" == src.tagName &#0124; &#0124; "FONT" == src.tagName &#0124; &#0124; "A" == src.tagName)
TRok = true

if ("LI" == src.tagName)
return src

if ("TR" == src.tagName)
{
if(TRok)

return src
return null
}
src = src.parentElement

}
return null
}
function dynOutlineEnabled(src)
{
while ("HTML" != src.tagName)
{
if("OL" == src.tagName &#0124; &#0124; "UL" == src.tagName &#0124; &#0124; "TABLE" == src.tagName)
if(null != src.getAttribute("dynamicoutline", false))
return true
src = src.parentElement
}
return false
}
function containedIn(src, dest)
{
while ("HTML" != src.tagName)
{
if (src == dest)
return true
src = src.parentElement
}
return false
}
function dynOutline()
{
var ms = navigator.appVersion.indexOf("MSIE");
ie4 = (ms>0) && (parseInt(navigator.appVersion.substring(ms+5, ms+6)) >= 4);

if(!ie4)
return;
var src = event.srcElement

src = getControlTag(src)

if (null == src)
return
if (!dynOutlineEnabled(src))
return
var idx = src.sourceIndex+1
while (idx < document.all.length && containedIn(document.all[idx].parentElement, src))
{
srcTmp = document.all[idx]
tag = srcTmp.tagName
if ("UL" == tag &#0124; &#0124; "OL" == tag &#0124; &#0124; "TABLE" == tag)
srcTmp.style.display = srcTmp.style.display == "none" ? "" : "none"
idx++;
}
}

function MM_showHideLayers() { //v2.0
var i, visStr, args, theObj;
args = MM_showHideLayers.arguments;
for (i=0; i<(args.length-2); i+=3) { //with arg triples (objNS,objIE,visStr)
visStr = args[i+2];
if (navigator.appName == 'Netscape' && document.layers != null) {
theObj = eval(args[i]);
if (theObj) theObj.visibility = visStr;
} else if (document.all != null) { //IE
if (visStr == 'show') visStr = 'visible'; //convert vals
if (visStr == 'hide') visStr = 'hidden';
theObj = eval(args[i+1]);
if (theObj) theObj.style.visibility = visStr;
} }
}

function MM_preloadImages() { //v2.0
if (document.images) {
var imgFiles = MM_preloadImages.arguments;
if (document.preloadArray==null) document.preloadArray = new Array();
var i = document.preloadArray.length;
with (document) for (var j=0; j<imgFiles.length; j++) if (imgFiles[j].charAt(0)!="#"){
preloadArray[i] = new Image;
preloadArray[i++].src = imgFiles[j];
} }
}

function MM_swapImage() { //v2.0
var i,j=0,objStr,obj,swapArray=new Array,oldArray=document.MM_swapImgData;
for (i=0; i < (MM_swapImage.arguments.length-2); i+=3) {
objStr = MM_swapImage.arguments[(navigator.appName == 'Netscape')?i:i+1];
if ((objStr.indexOf('document.layers[')==0 && document.layers==null) &#0124; &#0124;
(objStr.indexOf('document.all[') ==0 && document.all ==null))
objStr = 'document'+objStr.substring(objStr.lastIndexOf('.'),objStr.length);
obj = eval(objStr);
if (obj != null) {
swapArray[j++] = obj;
swapArray[j++] = (oldArray==null &#0124; &#0124; oldArray[j-1]!=obj)?obj.src http://www.devshed.com/Talk/Forums/redface.gifldArray[j];
obj.src = MM_swapImage.arguments[i+2];
} }
document.MM_swapImgData = swapArray; //used for restore
}

function MM_checkBrowser(NSvers,NSpass,NSnoPass,IEvers,IEpass,IEnoPass,OBpass,URL,altURL) { //v2.0
var newURL = '', version = parseFloat(navigator.appVersion);
if (navigator.appName.indexOf('Netscape') != -1) {
if (version >= NSvers) {if (NSpass>0) newURL = (NSpass==1)?URL:altURL;}
else {if (NSnoPass>0) newURL = (NSnoPass==1)?URL:altURL;}
} else if (navigator.appName.indexOf('Microsoft') != -1) {
if (version >= IEvers) {if (IEpass>0) newURL = (IEpass==1)?URL:altURL;}
else {if (IEnoPass>0) newURL = (IEnoPass==1)?URL:altURL;}
} else if (OBpass>0) newURL = (OBpass==1)?URL:altURL;
if (newURL) {
window.location = unescape(newURL);
document.MM_returnValue = false;
}
}
//-->
</script>
<meta name="Microsoft Border" content="none">
</head>

<body onclick="dynOutline()" topmargin="0" bgcolor="#FFFFFF">

<script language="JavaScript">
function GetCookieValue(name) {
var mycookie = " " + document.cookie + ";";
var hasSpace = name.indexOf(" ");
var name2;

if (hasSpace != -1) {
var preString = name.substring(0, hasSpace);
var postString = name.substring(hasSpace + 1 , name.length);
var name2 = preString.toLowerCase() + "_" + postString.toLowerCase();
}
else name2 = name.toLowerCase();

var searchName = "http" + "%3A" + "//www.bsharp.com/helpdesk_online/" + name2 + ".htm";
var startOfCookie = mycookie.indexOf(searchName);

if (startOfCookie != -1) {
var endOfCookie = startOfCookie + searchName.length;
var result = null;
result = unescape(mycookie.substring(startOfCookie,endOfCookie));
}
return result;
}

function GetCookie() {
var result = null;
var mycookie = " " + document.cookie + ";";
var searchName = "http";
var endOfCookie = mycookie.indexOf(searchName) - 1;
// var endOfCookie = searchName.length;
if (endOfCookie > 0) {
// endOfCookie = mycookie.indexOf("'='", startOfCookie);
result = unescape(mycookie.substring(1,endOfCookie));
}
return result;
}

function checkcookie() {

if (top.document.title == "B SHARP Technologies Inc. Client Connections") {
// var login_ok = login_fail();
// if (login_ok != 0) {
// var cookiename = document.forms[0].{{login1->html_name}}.value; //top.frames[0].document.forms[0].clientid.value;
var findcookie = GetCookie();
//alert(findcookie);
if (findcookie != null) {
// var findcookievalue = GetCookieValue(findcookie);
//alert(findcookievalue);
if (top.frames[0].document.forms[0].clientid.value == "" &#0124; &#0124; top.frames[0].document.forms[0].htmlpage.value == "") {
alert("ID empty");
top.frames[0].document.forms[0].clientid.value = findcookie;
top.frames[0].document.forms[0].htmlpage.value = findcookievalue;
}
// document.location = findcookievalue;
// }
}
}

else {
alert("Enter Login screen from our B SHARP.com site.");
document.location = "http://www.bsharp.com/cgi-bin/clienthelpdesk.exe/cclogin.jam";
}
}
</script>
<div id="tabs" style="position:absolute; left:100px; top:18px; width:577px; height:220px; z-index:2">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="100%" colspan="4">
<div align="center"><big><big><b><font size="4"><i>W</i></font></b></big>elcome
to the <strong><em>Ministry of Health</em> </strong></big> <big>Information
Page<strong>.</strong></big></div>
</td>
</tr>
<tr>
<td width="24%">&nbsp;</td>
<td width="24%">&nbsp;</td>
<td width="25%">&nbsp;</td>
<td width="27%">&nbsp;</td>
</tr>
<tr>
<td width="24%"><img src="tab_news_sel.jpg" width="144" height="20" onClick="MM_showHideLayers('document.layers['news']','document.all['news']','show','document.layers['stats']','document.all['stats']','hide','document.layers['help']','do cument.all['help']','hide','document.layers['other']','document.all['other']','hide');MM_swapImage('document.layers['tabs'].document.newstab','document.newstab','tab_news_s el.jpg','#926109030480');MM_swapImage('document.layers['tabs'].document.stattab','document.stattab','tab_projstst.jpg','#926109060910');MM_swapImage('document.lay ers['tabs'].do cument.helptab','document.helptab','tab_helpdesk.jpg','#926109083650');MM_swapImage('document.layers['tabs'].document.othertab','document.othertab','tab_other.jpg','#926109101280 ')" name="newstab"></td>
<td width="24%"><img src="tab_projstst.jpg" width="144" height="20" onClick="MM_showHideLayers('document.layers['news']','document.all['news']','hide','document.layers['stats']','document.all['stats']','show','document.layers['help']','do cument.all['help']','hide','document.layers['other']','document.all['other']','hide');MM_swapImage('document.layers['tabs'].document.newstab','document.newstab','tab_news.j pg','#926109136810');MM_swapImage('document.layers['tabs'].document.stattab','document.stattab','tab_projstst_sel.jpg','#926109122090');MM_swapImage('document .layers['tabs'].do cument.helptab','document.helptab','tab_helpdesk.jpg','#926109159220');MM_swapImage('document.layers['tabs'].document.othertab','document.othertab','tab_other.jpg','#926109187730 ')" name="stattab"></td>
<td width="25%"><img src="tab_helpdesk.jpg" width="144" height="20" name="helptab" onClick="MM_showHideLayers('document.layers['news']','document.all['news']','hide','document.layers['stats']','document.all['stats']','hide','document.layers['help']','do cument.all['help']','show','document.layers['other']','document.all['other']','hide');MM_swapImage('document.layers['tabs'].document.othertab','document.othertab','tab_othe r.jpg','#926109335750');MM_swapImage('document.layers['tabs'].document.helptab','document.helptab','tab_helpdesk_sel.jpg','#926109295930');MM_swapImage('document .layers['tabs'] .document.newstab','document.newstab','tab_news.jpg','#926109310270');MM_swapImage('document.layers['tabs'].document.stattab','document.stattab','tab_projstst.jpg','#926109323830 ')"></td>
<td width="27%"><img src="tab_other.jpg" width="144" height="20" name="othertab" onClick="MM_showHideLayers('document.layers['news']','document.all['news']','hide','document.layers['stats']','document.all['stats']','hide','document.layers['help']','do cument.all['help']','hide','document.layers['other']','document.all['other']','show');MM_swapImage('document.layers['tabs'].document.helptab','document.helptab','tab_helpde sk.jpg','#926109417150');MM_swapImage('document.layers['tabs'].document.othertab','document.othertab','tab_other_sel.jpg','#926109378270');MM_swapImage('document. layers['tabs'] .document.newstab','document.newstab','tab_news.jpg','#926109388370');MM_swapImage('document.layers['tabs'].document.stattab','document.stattab','tab_projstst.jpg','#926109404140 ')"></td>
</tr>
</table>
<table width="100%" border="2" cellspacing="0" cellpadding="0" height="400%">
<tr>
<td>&nbsp;</td>
</tr>
</table>
</div>
<div id="news" style="position:absolute; left:111px; top:90px; width:561px; height:39px; z-index:3; visibility: visible">
<table dynamicoutline border="0" cellpadding="0" cellspacing="0" width="100%" msimagelist>
<br>
<tr msimagelist>
<td valign="baseline" width="42" msimagelist height="40"><img src="sphere.jpg" width="26" height="26" hspace="8"></td>
<td valign="top" width="100%" height="40"><b><big>B
SHARP Technologies Newsletters</big></b>
<table dynamicoutline border="0" cellpadding="0" cellspacing="0" width="100%" msimagelist>
<tr msimagelist>
<td valign="baseline" width="42" msimagelist><img src="sphere_sm.jpg" width="21" height="22" hspace="10"></td>
<td valign="top" width="100%"><a href="http://www.bsharp.com/access/newsletters/supportnewsletter.htm" target="_self"><b>Month
of October 1998</b></a></td msimagelist>
</tr>

<tr msimagelist>
<td valign="baseline" width="42" msimagelist><img src="sphere_sm.jpg" width="21" height="22" hspace="10"></td>
<td valign="top" width="100%"><a href="http://www.bsharp.com/access/newsletters/supportnewsletterapr.htm" target="_self"><b>Month
of April 2000</b></a></td msimagelist>
</tr>

</table msimagelist>
</td msimagelist>
</tr>
</table msimagelist>

<br>


<table dynamicoutline border="0" cellpadding="0" cellspacing="0" width="90%" msimagelist>
<tr msimagelist>
<td valign="baseline" width="42" msimagelist height="40"><img src="sphere.jpg" width="26" height="26" hspace="8"></td>
<td valign="top" width="100%" height="40"><b><big>
Research & Development</big></b>
<table dynamicoutline border="0" cellpadding="0" cellspacing="0" width="100%" msimagelist>
<tr msimagelist>
<td valign="baseline" width="42" msimagelist></td>
<td valign="top" width="100%">As part of our ongoing research and development to modernize your existing PPH system, we will be regularly updating the links below to keep you up to date as to our progress.<p>Robert Lazar has already spoken with many of you regarding Web based Business Intelligence and real time on-line reporting. Not only will this solution provide each of you with the ability to easily generate reports and make them accesable to your staff via their PC browser, but also can reduce if not eliminate the use of Forthwriter. In addition to these benefits, as the PPH's go through the divestment process, the receiving hospital will have the ability to easily view relevant information neccessary for upper management decision making and information gathering.
<p>Business Intelligence<br>
- The Cognos Business Intelligence system will provide the ability to gain a broader perspective on various PPH data trends (CPI, Financials, Pharmacy, etc). The analysis features of BI will allow users to:</td msimagelist>
</tr>


<table dynamicoutline border="0" cellpadding="0" cellspacing="0" width="100%" msimagelist>
<tr msimagelist>
<td valign="baseline" width="42" msimagelist><img src="sphere_sm.jpg" width="15" height="17" hspace="10"></td>
<td valign="top" width="100%">Slice & Dice to display data in any combination</td msimagelist>
</tr>

<tr msimagelist>
<td valign="baseline" width="42" msimagelist><img src="sphere_sm.jpg" width="15" height="17" hspace="10"></td>
<td valign="top" width="100%">Drill down to the lowest level of detail</td msimagelist>
</tr>

<tr msimagelist>
<td valign="baseline" width="42" msimagelist><img src="sphere_sm.jpg" width="15" height="17" hspace="10"></td>
<td valign="top" width="100%">Rank and compare results</td msimagelist>
</tr>

<tr msimagelist>
<td valign="baseline" width="42" msimagelist><img src="sphere_sm.jpg" width="15" height="17" hspace="10"></td>
<td valign="top" width="100%">Analyze trends over time</td msimagelist>
</tr>
<tr msimagelist>
<td valign="baseline" width="42" msimagelist><img src="sphere_sm.jpg" width="15" height="17" hspace="10"></td>
<td valign="top" width="100%">Visualize data graphically</td msimagelist>
</tr>
</table msimagelist>

<br>

<table dynamicoutline border="0" cellpadding="0" cellspacing="0" width="100%" msimagelist>
<tr msimagelist>
<td valign="baseline" width="42" msimagelist></td>
<td valign="top" width="100%">Corporate Reporting<br>
- The Corporate Reporting project will allow PPH staff to easily create reports using the Cognos graphical based report designer and generator. These reports can then be published on the Internet to allow for users to access via their desktop browser.Please visit our links below for an introduction to Business Intelligence.

<table dynamicoutline border="0" cellpadding="0" cellspacing="0" width="100%" msimagelist>
<tr msimagelist>
<td valign="baseline" width="42" msimagelist><img src="sphere_sm.jpg" width="15" height="17" hspace="10"></td>
<td valign="top" width="100%"><a href="http://www.bsharp.com/cognos/cgi-bin/ppdscgi.exe?DC=Q&E=%2FMinistry%20of%20Health%20Cubes%2Fopda_all&BQ=500101001100$0$50$20$0$0$Patient%20Transaction%09Date%09$%28%230%2e1%2 b%29%28%231%2e1%2b%29$$$$&LA=en&LO=en-us" target="_self"><b>Out-Patient Activity Cube</b></a></td msimagelist>
</tr>




<tr msimagelist>
<td valign="baseline" width="42" msimagelist><img src="sphere_sm.jpg" width="15" height="17" hspace="10"></td>
<td valign="top" width="100%"><a href="http://minime/cognos/cgi-bin/ppdscgi.exe?DC=Q&E=%2FMinistry+of+Health+Cubes%2Fforensic"><b>Forensic Referrals</b></a></td msimagelist>
</tr>



<tr msimagelist>
<td valign="baseline" width="42" msimagelist><img src="sphere_sm.jpg" width="15" height="17" hspace="10"></td>
<td valign="top" width="100%"><a href="http://minime/cognos/cgi-bin/ppdscgi.exe?DC=Q&E=%2FMinistry%20of%20Health%20Cubes%2Fipsummary&BQ=500101001100$0$50$20$0$0$MEASURES%09Date%09$%28%230%2e1%2b%29%28%231%2e1%2b%2 9$$$$&LA=en&LO=en-us
"><b>In-Patient Summary</b></a></td msimagelist>
</tr>

<tr msimagelist>
<td valign="baseline" width="42" msimagelist><img src="sphere_sm.jpg" width="15" height="17" hspace="10"></td>
<td valign="top" width="100%"><a href="http://minime/cognos/cgi-bin/ppdscgi.exe?DC=Q&E=%2FMinistry%20of%20Health%20Cubes%2Finres&BQ=500101001100$0$50$20$0$0$Ward%09Residence%09$%28%230%2e1%2b%29%28%231%2e1%2b%29$$ $$&LA=en&LO=en-us
"><b>In-Patient Residence Cube</b></a></td msimagelist>
</tr>



</table msimagelist>



</td msimagelist>
</tr>

</table msimagelist>
</td msimagelist>

</table msimagelist>
</td msimagelist>
</tr>
</table msimagelist>












</div>
<div id="stats" style="position:absolute; left:111px; top:90px; width:564px; height:51px; z-index:4; visibility: hidden">
<table dynamicoutline border="0" cellpadding="0" cellspacing="0" width="100%" msimagelist>

<br><tr msimagelist>
<td valign="baseline" width="42" msimagelist height="130"><img src="sphere.jpg" width="26" height="26" hspace="8"></td>
<td valign="top" width="100%" height="130"><big><b>Y2K Project Status</b></big>
<table dynamicoutline border="0" cellpadding="0" cellspacing="0" width="100%" msimagelist>
<tr msimagelist>
<td valign="baseline" width="41" msimagelist><img src="sphere_sm.jpg" width="21" height="22" hspace="10"></td>
<td valign="top" colspan="2"><a href="http://www.bsharp.com/access/newsletters/Y2Kupdat112798.htm" target="_self"><b>November
1998 Update</b></a></td msimagelist>
</tr>
<tr msimagelist>
<td valign="baseline" width="41" msimagelist><img src="sphere_sm.jpg" width="21" height="22" hspace="10"></td>
<td valign="top" colspan="2"><a href="http://www.bsharp.com/access/newsletters/Y2Kupdat121598.htm" target="_self"><b>December
1998 Update</b></a></td msimagelist>
</tr>
<tr msimagelist>
<td valign="baseline" width="41" msimagelist><img src="sphere_sm.jpg" width="21" height="22" hspace="10"></td>
<td valign="top" colspan="2"><a href="http://www.bsharp.com/access/newsletters/Y2Kupdat011599.htm" target="_self"><b>January
1999 Update</b></a></td msimagelist>
</tr>
<tr msimagelist>
<td valign="baseline" width="41" msimagelist><img src="sphere_sm.jpg" width="21" height="22" hspace="10"></td>
<td valign="top" colspan="2"><a href="http://www.bsharp.com/access/newsletters/Y2Kupdat020599.htm" target="_self"><b>February
1999 Update</b></a></td msimagelist>
</tr>
<tr msimagelist>
<td valign="baseline" width="41" msimagelist><img src="sphere_sm.jpg" width="21" height="22" hspace="10"></td>
<td valign="top" width="219"><a href="http://www.bsharp.com/access/newsletters/Y2Kupdat030399.html" target="_self"><b>March
1999 Update</b></a> <font size="2">(03/03/99)</font></td msimagelist>
<tr imagelist>
<td valign="baseline" width="41" msimagelist><img src="sphere_sm.jpg" width="21" height="22" hspace="10"></td><td align="top" width="219"><a href="http://www.bsharp.com/access/newsletters/Y2Kupdat031999.htm" target="_self"><b>March
1999 Update</b></a> <font size="2">(03/19/99)</font></td msimagelist>
</tr>
<tr msimagelist>
<td valign="baseline" width="41" msimagelist><img src="sphere_sm.jpg" width="21" height="22" hspace="10"></td>
<td valign="top" width="482" colspan="2"><a href="http://www.bsharp.com/access/newsletters/Y2Kupdat041999.htm" target="_self"><b>April
1999 Update</b></a></td msimagelist>
</tr>
<tr msimagelist>
<td valign="baseline" width="41" msimagelist><img src="sphere_sm.jpg" width="21" height="22" hspace="10"></td>
<td valign="top" width="482" colspan="2"><a href="http://www.bsharp.com/access/newsletters/Y2Kupdat052099.htm" target="_self"><b>May
1999 Update</b></a></td msimagelist>
</tr>
<tr msimagelist>
<td valign="baseline" width="41" msimagelist><img src="sphere_sm.jpg" width="21" height="22" hspace="10"></td>
<td valign="top" width="482" colspan="2"><a href="http://www.bsharp.com/access/newsletters/Y2Kupdat061499.htm" target="_self"><b>June
1999 Update</b></a></td msimagelist>
</tr>

<tr msimagelist>
<td valign="baseline" width="41" msimagelist><img src="sphere_sm.jpg" width="21" height="22" hspace="10"></td>
<td valign="top" width="482" colspan="2"><a href="http://www.bsharp.com/access/newsletters/Y2Kupdat071599.htm" target="_self"><b>July
1999 Update</b></a></td msimagelist>
</tr>

<tr msimagelist>
<td valign="baseline" width="41" msimagelist><img src="sphere_sm.jpg" width="21" height="22" hspace="10"></td>
<td valign="top" width="482" colspan="2"><a href="http://www.bsharp.com/access/newsletters/Y2Kupdat081799.htm" target="_self"><b>August
1999 Update</b></a></td msimagelist>
</tr>

<tr msimagelist>
<td valign="baseline" width="41" msimagelist><img src="sphere_sm.jpg" width="21" height="22" hspace="10"></td>
<td valign="top" width="482" colspan="2"><a href="http://www.bsharp.com/access/newsletters/Y2Kupdat092099.htm" target="_self"><b>September
1999 Update</b></a></td msimagelist>
</tr>



</table msimagelist>
</td msimagelist>
</tr>
</table msimagelist>
</div>
<div id="help" style="position:absolute; left:111px; top:90px; width:594px; height:51px; z-index:5; visibility: hidden">
<table dynamicoutline border="0" cellpadding="0" cellspacing="0" width="100%" msimagelist>
<br><tr msimagelist>
<td valign="baseline" width="42" msimagelist><img src="sphere.jpg" width="26" height="26" hspace="8"></td>
<td valign="top" width="100%"><big><b>BSHARP Technologies HelpDesk</b></strong>
<table dynamicoutline border="0" cellpadding="0" cellspacing="0" width="100%" msimagelist>
<tr msimagelist>
<td valign="baseline" width="42" msimagelist><img src="sphere_sm.jpg" width="21" height="22" hspace="10"></td>
<td valign="middle" width="100%"><a href="http://www.bsharp.com/cgi-bin/clienthelpdesk.exe/hd_main.jam?client={{login}}&htmpage={{htmpage}}" target="_self"><b><big>Customer
Support Helpdesk</big></b></a><img src="bignew.gif" width="69" height="39" align="absmiddle"></td msimagelist>
</tr>



<table dynamicoutline border="0" cellpadding="0" cellspacing="0" width="100%" msimagelist>
<tr msimagelist>
<td valign="baseline" width="42" msimagelist><img src="sphere_sm.jpg" width="21" height="22" hspace="10"></td>
<td valign="top" width="100%"><a href="mailto:helpdesk@bsharp.com"><b>Contact
HelpDesk Information by email</b></a></td msimagelist>
</tr>
<tr msimagelist>
<td valign="baseline" width="42" msimagelist><img src="sphere_sm.jpg" width="21" height="22" hspace="10"></td>
<td valign="top" width="100%"><b>Frequently Asked Questions &amp;
Solutions Coming Soon!</b>

</table msimagelist>
</td msimagelist>
</tr>
</table msimagelist>
</td msimagelist>
</tr>
</table msimagelist>
</div>
<div id="other" style="position:absolute; left:111px; top:90px; width:557px; height:185px; z-index:6; visibility: hidden">
<table dynamicoutline border="0" cellpadding="0" cellspacing="0" width="100%" msimagelist height="137">
<br><tr msimagelist>
<td valign="baseline" width="42" msimagelist height="35"><img src="sphere.jpg" width="26" height="26" hspace="8"></td>
<td valign="top" colspan="2" height="35"><big><b>MOH Year 2000 Information</b></big>
</td msimagelist>
</tr>
<tr msimagelist>
<td valign="baseline" width="42" msimagelist height="2">&nbsp;</td>
<td valign="top" height="2"><img src="sphere_sm.jpg" width="21" height="22" hspace="10"></td msimagelist>
<td valign="top" height="2"><a href="http://www.bsharp.com/access/newsletters/1112MEET.htm" target="_self"><font size="2"><b>Minutes
of theY2K MHB/PPH Coordinators Meeting</b></font></a> > Nov '98</td msimagelist>
</tr>
<tr msimagelist>
<td valign="baseline" width="42" msimagelist height="4">&nbsp;</td>
<td valign="top" height="4"><img src="sphere_sm.jpg" width="21" height="22" hspace="10"></td msimagelist>
<td valign="top" height="4">
<p><a href="http://www.bsharp.com/access/newsletters/1216MINUTES.htm" target="_self"><font size="2"><b>Minutes
of theY2K MHB/PPH Coordinators Meeting</b></font></a> > Dec '98</p>
</td msimagelist>
</tr>
<tr msimagelist>
<td valign="baseline" width="42" msimagelist height="9">&nbsp;</td>
<td valign="top" width="41" height="9"><img src="sphere_sm.jpg" width="21" height="22" hspace="10"></td msimagelist>
<td valign="top" width="417" height="9">
<p><a href="http://www.bsharp.com/access/newsletters/Y2Kmin021799.htm" target="_self"><font size="2"><b>Minutes
of theY2K MHB/PPH Coordinators Meeting</b></font></a> > Feb '99</p>
</td msimagelist>
</tr>
<tr msimagelist>
<td valign="baseline" width="42" msimagelist height="2">&nbsp;</td>
<td valign="top" width="41" height="2"><img src="sphere_sm.jpg" width="21" height="22" hspace="10"></td msimagelist>
<td valign="top" width="417" height="2"><a href="http://www.bsharp.com/access/newsletters/Y2Kmin032499.htm" target="_self"><font size="2"><b>Minutes
of theY2K MHB/PPH Coordinators Meeting</b></font></a> > Mar '99</td msimagelist>
</tr>
</table msimagelist>
</div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>

</body>
</html>

Figured it out.










privacy (GDPR)