
function ipoArchives(yr)
{
	beginYear = 2010
	EndYear = 2000

	dataUpd = "<form><li type=square><font style='font-size:9pt; font-family:arial'><b>IPO Archives:</b> <select name='YearFile'>"	
	for(i=beginYear; i>=EndYear; i--)
	{
		if(i != yr)
		{
			dataUpd += "<option value='/research-it/ipo/archives"+ i.toString().substring(2,4)+".html'>"+i+"</option>"
		}
	}
	dataUpd += "</select><input type=button value='go' onClick='showFile(this.form)'></form>"	
	document.write(dataUpd)
}

function showFile(form)
{
	window.location.href = form.YearFile.options[form.YearFile.selectedIndex].value
}

