
	function go()
{
        choice = document.funds.login;
        destination = choice.options[choice.selectedIndex].value;
           if (destination == '0') return;
           document.location.href = destination;
}
document.write('<select name="login" class="options" onChange="go()">');
document.write('<option value="0" selected>Liquidity Fund');
document.write('<option value="euro.html">Euro Liquidity');
document.write('<option value="usd.html">US Dollar Liquidity');
document.write('<option value="sterling.html">Sterling Liquidity');


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


