function genDropdown() {
	document.write('<form name="formPage" method="post" action="">');
	document.write('  <select class="dropdown_font"  name="site" onchange="javascript:pageHandler(this)" >');
	document.write('    <option selected>---- Select Year ----</option>');
	document.write('    <option value="use_of_fund_2009.php">Financial Report 2009</option>');
	document.write('    <option value="use_of_fund_2008.php">Financial Report 2008</option>');
	document.write('    <option value="use_of_fund_2007.php">Financial Report 2007</option>');
	document.write('    <option value="use_of_fund_2006.php">Financial Report 2006</option>');
	document.write('    <option value="use_of_fund_2005.php">Financial Report 2005</option>');
	document.write('  </select>');
	document.write('</form>');
}
function pageHandler(formName){
	var URL = formName.options[formName.selectedIndex].value;
	window.location.href = URL;
}
function getLatestArticle(formName){
	var URL = formName.site.options[1].value;
	window.location.href = URL;
}