function stem(distinct)
 {
   url_window="stem.asp?LinkID="+distinct;
    msgWindow=window.open(url_window,"OpenWindow","width=420,height=380,scrollbars=no");
 }


function Action_onclick()
 
 {
	var SelIndex1 = sort.D1.selectedIndex
	var SelText1 = sort.D1.options(SelIndex1).text

	var SelIndex2 = sort.D2.selectedIndex
	var SelText2 = sort.D2.options(SelIndex2).text

	if (sort.C1.checked == true)	{
		var Sorted = "yes"
	}
	else	{
		var Sorted = "no"
	}

	var String = "links.asp?D1_id=" + SelIndex1 + "&D1=" + SelText1 + "&D2_id=" + SelIndex2 + "&D2=" + SelText2 + "&C1=" + Sorted
	
	window.navigate(String)
}


function B2_onclick() {

	window.navigate("links.asp")

}

