I don't think so, but can you focus on cross-frame issues?
I am using following type of menu code, not a coffeecup code.
--------------------------------------------------------
<html>
<head>
<style>
body{font-family:arial;}
table{font-size:80%;background:black}
a{color:black;text-decoration:none;font:bold}
a:hover{color:#606060}
td.menu{background:lightblue}
table.menu
{
font-size:100%;
position:absolute;
visibility:hidden;
}
</style>
<script type="text/javascript">
function showmenu(elmnt)
{
document.getElementById(elmnt).style.visibility="v isible"
}
function hidemenu(elmnt)
{
document.getElementById(elmnt).style.visibility="h idden"
}
</script>
</head>
<body>
<table>
<tr bgcolor="#FF8080">
<td onmouseover="showmenu('timesheet')" onmouseout="hidemenu('timesheet')">
<a href="#">Time Sheet</a><br />
<table class="menu" id="timesheet" width="120">
<tr><td class="menu"><a href="timesheet.asp">My Time Sheet</a></td></tr>
</table>
</td>
<td onmouseover="showmenu('Leaves')" onmouseout="hidemenu('Leaves')">
Leaves<br />
<table class="menu" id="Leaves" width="120">
<tr><td class="menu"><a href="leaveapply.html">Application</a></td></tr>
<tr><td class="menu"><a href="leaveview.asp">Status</a></td></tr>
<tr><td class="menu"><a href="leaveaction.asp">Request Received</a></td></tr>
</table>
</td>
<td onmouseover="showmenu('Employee')" onmouseout="hidemenu('Employee')">
Employee</a><br />
<table class="menu" id="Employee" width="120">
<tr><td class="menu"><a href="empaddform.asp">Add</a></td></tr>
<tr><td class="menu"><a href="empsearch.html">Search</a></td></tr>
</table>
</td>
<td onmouseover="showmenu('Reports')" onmouseout="hidemenu('Reports')">
Reports</a><br />
<table class="menu" id="Reports" width="120">
<tr><td class="menu"><a href="parameters.asp?para=per" target="MainFrame">My Hours</a></td></tr>
<tr><td class="menu"><a href="parameters.asp?para=team">Team Wise</a></td></tr>
<tr><td class="menu"><a href="parameters.asp?para=proj">Project Wise</a></td></tr>
<tr><td class="menu"><a href="parameters.asp?para=sum">Summary</a></td></tr>
</table>
</td>
</tr>
</table>
|