function formHandler(){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}


document.write('<form name="form">');
document.write('&nbsp;');
document.write('<select name="site" style="FONT-SIZE: 11px; WIDTH: 120px; COLOR: #003366; FONT-FAMILY: Arial, Verdana, Helvetica, sans-serif" size=1>');
document.write('<option value="../news/news001.html">-- News releases --');
document.write('<option value="../newsjune2005/june2005.html">June 2005');
document.write('<option value="../newsmay2005/may2005.html">May 2005');
document.write('<option value="../news_april2005/april2005.html">April 2005');
document.write('<option value="../news_march2005/march2005.html">March 2005');
document.write('<option value="../news_february2005/february2005.html">February 2005');
document.write('<option value="../news_january2005/january2005.html">January 2005');
document.write('<option value="../news_december2004/news001.html">December 2004');
document.write('<option value="../news_november2004/news001.html">November 2004');
document.write('<option value="../news_october2004/october2004.html">October 2004');
document.write('</select>');
document.write('<<a href="JavaScript:formHandler()"><img border=0 name=submit width="14" height="13" src="../slike/next.gif"></a>>');
document.write('<hr>');
document.write('</form>');

