<!--

 /** Replace the Select tag for releases with SCRIPT tag.
   *
   * <SCRIPT LANGUAGE="JavaScript" SRC="<path to incl folder>/incl/sel_rel.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="releases" id="releases">');
document.write('<option value="default" selected>--Select news--</option>');
document.write('<option value="2009">Year 2010</option>');
document.write('<option value="2009">Year 2009</option>');
document.write('<option value="2008">Year 2008</option>');
document.write('<option value="2007">Year 2007</option>');
document.write('<option value="2006">Year 2006</option>');
document.write('<option value="2005">Year 2005</option>');
document.write('<option value="2004">Year 2004</option>');
document.write('<option value="2003">Year 2003</option>');
document.write('<option value="2002">Year 2002</option>');
document.write('<option value="2001">Year 2001</option>');
document.write('</select>');
document.write('<a href="javascript:gotopage()" class="hldownloads">GO</a>');

document.write('<br />');
//document.write('<br />');

//document.write('<span bgcolor="#B2CDDE" class="dateFont">&nbsp;&nbsp;Browse Q/A</span><br/>');
document.write('&nbsp; &nbsp;<select name="q_a" id="q_a">');
document.write('<option value="default" selected>--Select Q&A--</option>');
document.write('<option value="2009">Year 2009</option>');
document.write('</select>');
document.write('<a href="javascript:goToQAPage()" class="hldownloads">GO</a>');

function goToQAPage()
{
    var str=document.selfrm.q_a.value;
    var href = window.location.href;
    var index = href.indexOf("/IR/");
    if(index == -1)
       href = "IR/Q_A/q_a"+str+".htm";
    else if(href.indexOf("/IR/Q_A/") == -1)
       href = "Q_A/q_a"+str+".htm";
    else
       href = "q_a"+str+".htm";
    location=href;
}

 //-->