function getRadioValue (radioButtonOrGroup) {
  var value = null;
  if (radioButtonOrGroup.length) {  
    for (var b = 0; b < radioButtonOrGroup.length; b++)
      if (radioButtonOrGroup[b].checked)
        value = radioButtonOrGroup[b].value;
  }
  else if (radioButtonOrGroup.checked)
    value = radioButtonOrGroup.value;
  return value;
}


function validate(){
	var haku_str;
	var a_str;
	
	a_str="";
	haku_str=document.forms[0].hakusana.value;
	curr_selected=getRadioValue(document.forms[0].R1);
	
	if (curr_selected=="V1"){
	search_option="tuote";	
	}else if (curr_selected=="V2") {
	search_option="toimittaja";
	}
	else {
	a_str=a_str+="-Valitse hakualue\n";
	}
	
	if (haku_str.length==0){
		a_str=a_str+"-Anna hakusana\n"
		}
	else{
		if (haku_str.length<=2){
		a_str=a_str+"-Vähintään 3 kirjainta\n"
		}
	}
	
	if (a_str.length!=0){
	alert(a_str);
	}else{
			location.href="default.asp?docId=11975&searchoption="+search_option+"&hakusana="+haku_str;
	}
}
