|
The menu doesn't even work!
your menu doesn't work at all in NS6. To fix this, you must implement The DOM way of hiding and showing elements. You're going to have to put in another thing in your if else statement:
function showLot(id)
{
ns6=(document.getElementById) ? true:false
ns4=(document.layers)? true:false
ie4=(document.all)? true:false
if (ns4)
{ document.layers[id].visibility="show"
}
else if (ie4)
{
document.all[id].style.visibility="visible"
} else if (ns6)
{
document.getElementById(id).style.visibility="visible";
}
}
To hide it, the visibility property should be "hidden"
Since i don't actually have access to your server, plus i don't really have the time, i can't test and replace the include by myself.
__________________
Computers are simple for the complex mind, yet complex for the simple mind
|