<!--
function LinkSelect(form, sel)
{
	adrs = sel.options[sel.selectedIndex].value;
	if (adrs == "-" ) return(false);
	if (adrs != "-" ) parent.location.href=adrs;
    return(true);
}
function LinkSelect2(form, sel)
{
	adrs = sel.options[sel.selectedIndex].value;
	if (adrs == "-" ) return(false);
	if (adrs != "-" ) window.open(adrs,"newWin");
    return(true);
}
// -->
