<!--

 /** Replace the Select tag for year with the following SCRIPT tag.
   *
   * <SCRIPT LANGUAGE="JavaScript" SRC="<path to incl folder>/incl/sel_yr.js"></SCRIPT>
  **/


 /**
   * Syntax  is       document.write('<text here>');
   *
   * Use Single Quotes only to Start and End the Text. Donot use SingleQuotes in between, 
   * For attribute values of HTML tags Use DoubleQuotes only.
  **/

document.write('<select name="year" id="year">');
document.write('<option value="2010" selected>2010</option>');
document.write('<option value="2009">2009</option>');
document.write('<option value="2008">2008</option>');
document.write('<option value="2007">2007</option>');
document.write('<option value="2006">2006</option>');
document.write('<option value="2005">2005</option>');
document.write('<option value="2004">2004</option>');
document.write('<option value="2003">2003</option>');
document.write('<option value="2002">2002</option>');
document.write('<option value="2001">2001</option>');
document.write('</select>');
document.write('<a href="javascript:change()" class="hldownloads">GO</a>');

//-->