// function to display layers on onMouseOver/onMouseOut
// args: id of div-object, event throwing object, style property of div-object

function displayDiv(id, which, property)
{
    //which.onclick=new Function("return false");
    if (document.getElementById)
        document.getElementById(id).style.display=property;
}
