

function jump1(form) {   // accepts form field 1  and jumps to URL("value")
if ( (is.ns3) || (is.ns4) || (is.ie4) || (is.ie5) ) {
	var myindex=form.specialized.selectedIndex;
	var url=form.specialized.options[myindex].value;
	if  ((url != "0") && (url != "1"))  {
		location=url;
	}
}
}

function jump2(form) {   // accepts form field 2 and jumps to URL("value")
if ( (is.ns3) || (is.ns4) || (is.ie4) || (is.ie5) ) {
	var myindex=form.organization.selectedIndex
	if (form.organization.options[myindex].value != "0") {
		location=form.organization.options[myindex].value;
	}
}
}
