<!--
function LinkSelect(form, sel)
{
	c = sel.selectedIndex;
	linkLoc = sel.options[c].value;
	if (linkLoc !=  "_")
	{
		if ((c == 0) || (c == 0))
		{
			LinkWin=window.open("","_top");
		}else{
			LinkWin=top;
		}
		LinkWin.location.href=linkLoc;
	}
}
// -->
