Here is the website:
http://www.supplychainenergy.org/index.asp
I’m just doing a very simple menu, with only one submenu call. As you’ll see from the page when you load everything looks great, but as soon as you mouse over the menu I get the ERROR ON PAGE in my browser bar at the bottom. I also can’t get the submenu to work, but I know it’s working because the colors are correct and so is the image… not sure what gives.
Code on page:
Code: Select all
<LINK HREF="/style.css" REL="stylesheet">
</HEAD>
<BODY>
<script language=JavaScript src="/Script/milonic_src.js" type=text/javascript></script>
<script language=JavaScript>
if(ns4)_d.write("<scr"+"ipt language=JavaScript src=/Script/mmenuns4.js></scr"+"ipt>");
else _d.write("<scr"+"ipt language=JavaScript src=/Script/mmenudom.js></scr"+"ipt>");
</script>
<script language=JavaScript src="/Script/menu_data.js" type=text/javascript></script>
<TABLE WIDTH="780" BORDER="0" ALIGN="CENTER" CELLSPACING=0 CELLPADDING=2>
<TR>
<TD HEIGHT="134" COLSPAN="2">
<DIV ALIGN="CENTER"><IMG SRC="/Elements/header_EC.jpg" WIDTH="600" HEIGHT="91" border="1"></DIV>
</TD>
</TR>
<TR>
<TD width="35%" height="185" align=center valign="top">
<script>
with(milonic=new menuname("Main Menu")){
style=menuStyle;
alwaysvisible=1;
orientation="Vertical";
position="relative";
aI("text=Home;url=http://www.supplychainenergy.org/index.asp;");
aI("text=Register Now;showmenu=Samples;");
aI("text=Sessions and Speakers;url=/Speakers.asp;");
aI("text=Location;url=/Location.asp;");
aI("text=Where to Stay;url=/StayMIT.asp;");
aI("text=Contact;url=/Contact.asp;");
aI("text=About MIT-CTL;url=http://ctl.mit.edu/;");
aI("text=About CSCMP;url=http://cscmp.org;");
}
drawMenus();
</script>
</TD>
Menu_data.js
Code: Select all
_menuCloseDelay=500;
_menuOpenDelay=150;
_subOffsetTop=2;
_subOffsetLeft=-2;
with(menuStyle=new mm_style()){
bordercolor="#000000";
.
. Normal Stuff
.
subimagepadding=2;
}
with(milonic=new menuname("Samples")){
overflow="scroll";
style=menuStyle;
aI("text=Online;url=http://www.cscmp.org;")
aI("text=Download;url=http://www.cscmp.org;")
}
drawMenus();
Thanks in advance for your time.