HTML Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Research</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!-- Navbar def --><!--language= is deprecated - only type is necessary.-->
<script type="text/javascript">
<!-- Dummy comment to hide code from non-JavaScript browsers.
if (document.images) {
buttonUp = new Image(); buttonUp.src = "buttonUp.png"; // Never use bitmaps for the web.
buttonDown = new Image(); buttonDown.src = "buttonDown.png";
}
function turn_off(cell) {
if (document.images != null) {
cell.style.backgroundImage = "url('" + buttonUp.src + "')";
}
}
function turn_on(cell) {
if (document.images != null) {
cell.style.backgroundImage = "url('" + buttonDown.src + "')";
}
}
// End of dummy comment -->
</script>
<!-- Navbar def end -->
<style type="text/css">
@media all {
html, body {
background-color: white;
}
.navbar {
border-style: none;
border-width: 0;
}
.navbar td {
text-align: center;
background-image: url('buttonUp.png');
}
.navbar td a {
font-size: 1.25em;
font-weight: bold;
color: black;
text-decoration: none;
}
.navbar td a:hover {
font-size: 1.5em;
font-weight: bold;
color: black;
text-decoration: underline;
}
a {
color: blue;
}
}
</style>
</head>
<body>
<!-- Start of NavBar definition -->
<table class="navbar" cellspacing="0" cellpadding="0">
<tr><td><img src="blue_top.png" alt="Navigation" style="width:183px;height:18px;"><!-- Don't use blank alts. There's that bitmap again... --></td></tr>
<tr><td onmouseout="turn_off(this)" onmouseover="turn_on(this)"><a href="publications.html#1995" target="mainframe">1995</a></td></tr>
<tr><td onmouseout="turn_off(this)" onmouseover="turn_on(this)"><a href="publications.html#1996" target="mainframe">1996</a></td></tr>
<tr><td onmouseout="turn_off(this)" onmouseover="turn_on(this)"><a href="publications.html#1997" target="mainframe">1997</a></td></tr>
<tr><td onmouseout="turn_off(this)" onmouseover="turn_on(this)"><a href="publications.html#1998" target="mainframe">1998</a></td></tr>
<tr><td onmouseout="turn_off(this)" onmouseover="turn_on(this)"><a href="publications.html#1999" target="mainframe">1999</a></td></tr>
<tr><td onmouseout="turn_off(this)" onmouseover="turn_on(this)"><a href="publications.html#2000" target="mainframe">2000</a></td></tr>
<tr><td onmouseout="turn_off(this)" onmouseover="turn_on(this)"><a href="publications.html#2001" target="mainframe">2001</a></td></tr>
<tr><td onmouseout="turn_off(this)" onmouseover="turn_on(this)"><a href="publications.html#2002" target="mainframe">2002</a></td></tr>
<tr><td onmouseout="turn_off(this)" onmouseover="turn_on(this)"><a href="publications.html#2003" target="mainframe">2003</a></td></tr>
<tr><td onmouseout="turn_off(this)" onmouseover="turn_on(this)"><a href="publications.html#2004" target="mainframe">2004</a></td></tr>
<tr><td onmouseout="turn_off(this)" onmouseover="turn_on(this)"><a href="publications.html#2005" target="mainframe">2005</a></td></tr>
<tr><td onmouseout="turn_off(this)" onmouseover="turn_on(this)"><a href="publications.html#2006" target="mainframe">2006</a></td></tr>
<tr><td onmouseout="turn_off(this)" onmouseover="turn_on(this)"><a href="publications.html#2007" target="mainframe">2007</a></td></tr>
<tr><td onmouseout="turn_off(this)" onmouseover="turn_on(this)"><a href="publications.html#2008" target="mainframe">2008</a></td></tr>
<tr><td onmouseout="turn_off(this)" onmouseover="turn_on(this)"><a href="publications.html#2009" target="mainframe">2009</a></td></tr>
<tr><td onmouseout="turn_off(this)" onmouseover="turn_on(this)"><a href="publications.html#2010" target="mainframe">2010</a></td></tr>
<tr><td><img src="blue_bottom.png" alt="End of Navigation" style="width:183px;height:18px;"></td></tr>
</table>
<!-- End of NavBar definition -->
</body>
</html>
This works and is valid.
Images: buttonUp.png (blank button in "up" position), buttonDown.png (blank button in "down" position), blue_top.png and blue_bottom.png - PNG equivalents of your blue_top.bmp and blue_bottom.bmp, because you should never use bitmaps for the web.
Bookmarks