aboutsummaryrefslogtreecommitdiff
path: root/web/images/webqtl.js
blob: 9b4fae83a7144ca7444205a3eaf9f80f81b2210c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
function xchange() {  
  var select = document.crossChoice.RISet;
  var value = select.options[select.selectedIndex].value;
  
  if (value !="BDAI") return;
  document.crossChoice.variance.checked = false;
}

function showSample(){
	document.crossChoice.submitID.value = "sample";
	document.crossChoice.submit();
}

function showNext(){
	document.crossChoice.submitID.value = "next";
	document.crossChoice.submit();
}