function displayMenu( id, type, linkid, linktype )
{

        obj = document.getElementById( id );
        obj.style.display = type;

        obj = document.getElementById( linkid );
        obj.style.display = linktype;

}

