<!--

function ShowResults(year)
{
	winRef = window.open('results2.php?year='+year,'mywin','left=20,top=20,width=430,height=600,toolbar=0,scrollbars=1,resizable=1');
	return false;
}

function OpenWindow(file, win_name)
{
	winRef = window.open(file, win_name, 'left=20,top=20,width=800,height=600,toolbar=0,scrollbars=1,resizable=1');
	return false;
}

function ChangeMeet(id)
{
	var tables = document.getElementsByTagName("div");
	for (x = 0; x < tables.length; x++)
	{
		if (tables[x].id.indexOf('table') != -1) {
			idArray = tables[x].id.split(':');
			divId = idArray[0];
			tableNum = idArray[1]

			if (id == tableNum) {
				document.getElementById(tables[x].id).style.display = 'block';
			} else {
				document.getElementById(tables[x].id).style.display = 'none';
			}
		}
	}
}

//-->
