ff="<font size=2 color=#000000>";
bu="http://vho.org/";
document.write('<form name="year"><table align=center border=1 bordercolor=#000000 bgcolor=#f0efc0 cellpadding=1 cellspacing=0><tr><td><a href="index.html">'+ff+'Current Year</a><td>'+ff+'Older Year: <select name="year" value="2001" size="1" onchange=nav()><option></option><option>2004</option><option>2003</option></select><input type=button value="Go!" onclick=nav()><td></table></form>');
function nav()
{
tf = document.forms[4];
yl = tf.year;
yx = yl.selectedIndex;
yt = yl.options[yx].text;
dest = yt+".html";
self.location.href=dest;
}
