HTML Code:
<script language="JavaScript">
/*
** Loads two iframes with the appropriate links
*/
function multiLoad( doc1, doc2, headerText )
{
//document.all.blah.innerHTML = headerText;
//document.getElementById( "SubNav" ).src = doc1;
document.getElementById( "Main" ).src = doc2;
}
</script>
Use this link to call the frames:
HTML Code:
<a href="javascript:void(0)" onmouseOver="window.status='Dashboard'; return true" onmouseOut="window.status=''; return true" onClick="multiLoad('/dashboard_nav.aspx','/dashboard.aspx','Dashboard')" target="Main">Dashboard</a>
Bookmarks