function button1_onclick() 
{
	var strLoc;
	var intNm;
	
	strLoc = document.f1.ScptName.value + "?Div=" + document.f1.select1.options[document.f1.select1.selectedIndex].value + "&Ind=" + document.f1.select1.selectedIndex;
	
	location.href = strLoc;
}

function window_onload() 
{
	radio3_onclick();
}

function radio3_onclick() 
{
	if (document.f1.SelInd.value > -1)
	{
		document.f1.select1.selectedIndex = document.f1.SelInd.value;
		document.f1.SelInd.value = -1;
	}
}

function key_onkeypress() 
{
	if (event.keyCode == 13)
		button1_onclick();
}



