
function signOnGo() {
	var iTempSelectedIndex =
 document.getElementById('signOnForm').elements['signOnSelect'].selectedIndex;
	var thelink = document.getElementById('signOnForm').elements['signOnSelect'].options[iTempSelectedIndex].value;
	newWindow=window.open (thelink);	
}



document.write('<form id="signOnForm">\n'+
'<div id="signOnTo">\n'+
	'<h2>SECURE AREA LOGIN:</h2>\n'+
	'<label for="stockList">Choose a site:</label>\n'+
	'<select id="signOnSelect" name="signOnSelect">\n'+
		'<option value="https://trading.netthruput.com/secure/rlogin.html">Crude Oil Trading Platform</option>\n'+
		'<option value="https://trng.netthruput.com/secure/rlogin.html">Training Environment</option>\n'+
		'<option value="http://www.netthruput.com/media/uploaded-files/jre-1_5_0_08-windows-i586-p.exe">Plugin Download</option>\n'+
			
'</select>\n'+
	'<a href="javascript: signOnGo();"><img src="images/search_go.gif" border="0" alt="GO"></a>\n'+
'</div>\n'+
'</form>');


