Problems with Navbar/Netscape

I am making a navigation bar for my website, and it works perfectly fine for IE 5.5, but when I try to view the site in Netscape 6.2, the drop down lists do not appear. I am using 3 frames, with the nav in the middle, and the menu outputting in the third frame. I have attached all my code that I have used in making it. Any ideas as to what in the code is not allowing it to run properly on Netscape?? Any help would be GREATLY appreciated.<!--content-->Here is how I set up the menu:<br />
<br />
window.GenInfo = new Menu("GenInfo");<br />
GenInfo.addMenuItem("Home Page", "parent.goHome()");<br />
GenInfo.addMenuItem("Site Map", "parent.Site()");<br />
GenInfo.addMenuItem("Locations", "parent.Locations()");<br />
GenInfo.addMenuItem("Employment", "parent.Job()");<br />
GenInfo.addMenuItem("Contact Us", "parent.Contact()");<br />
<br />
window.PatMR = new Menu("Patients");<br />
PatMR.addMenuItem("Info", "parent.PatInfo()");<br />
PatMR.addMenuItem("Checklist", "parent.Check()");<br />
PatMR.addMenuItem("FAQ", "parent.FAQ()");<br />
<br />
window.PhyMR = new Menu("Physicians");<br />
PhyMR.addMenuItem("Newsletter", "parent.News()");<br />
PhyMR.addMenuItem("Referrals", "parent.Refer()");<br />
PhyMR.addMenuItem("Education");<br />
<br />
window.MR = new Menu("MR");<br />
MR.addMenuItem(PatMR);<br />
MR.addMenuItem(PhyMR);<br />
<br />
window.PatCT = new Menu("Patients");<br />
PatCT.addMenuItem("Info", "parent.PatInfoCT()");<br />
PatCT.addMenuItem("FAQ", "parent.CTFAQ()");<br />
<br />
window.PhyCT = new Menu("Physicians");<br />
PhyCT.addMenuItem("Newsletter");<br />
PhyCT.addMenuItem("Education");<br />
<br />
window.CT = new Menu("CT1");<br />
CT.addMenuItem(PatCT);<br />
CT.addMenuItem(PhyCT);<br />
<br />
window.PatPet= new Menu("Patients");<br />
PatPet.addMenuItem("Info", "parent.PatInfoPet()");<br />
PatPet.addMenuItem("FAQ");<br />
<br />
window.PhyPet = new Menu("Physicians");<br />
PhyPet.addMenuItem("Newletter");<br />
PhyPet.addMenuItem("Education");<br />
<br />
window.PET = new Menu("PET1");<br />
PET.addMenuItem(PatPet);<br />
PET.addMenuItem(PhyPet);<br />
<br />
window.PatS= new Menu("Patients");<br />
PatS.addMenuItem("Info", "parent.PatInfoSS()");<br />
PatS.addMenuItem("Directions", "parent.DirectS()");<br />
<br />
window.PhyS = new Menu("Physicians");<br />
PhyS.addMenuItem("Newsletter");<br />
PhyS.addMenuItem("Education");<br />
<br />
window.SSOC = new Menu("SOC");<br />
SSOC.addMenuItem(PatS);<br />
SSOC.addMenuItem(PhyS);<br />
SSOC.fontColor = "#FFFFFF";<br />
SSOC.menuItemIndent = 1;<br />
SSOC.menuItemBgColor = "#4D5471";<br />
SSOC.menuHiliteBgColor = "#008B8B";<br />
SSOC.menuItemWidth = 110;<br />
SSOC.prototypeStyles = SSOC;<br />
SSOC.writeMenus();<br />
<br />
Attached is my indexframes.html file in .txt form. Sorry I couldnt give direct links, it isn't up and running yet, building it as we speak. Thanks for all of your time.<!--content-->
 
Back
Top