function LinkSelect(form, sel)
{
	c = sel.selectedIndex;
	adrs = sel.options[c].value;
	if (adrs != "-" )
	{
		LinkWin=window.open("","_top");
		LinkWin.location.href=adrs;
	}
}

