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