function get_radio_value()

{
for (var i=0; i < document.wordform.music.length; i++)
   {
   if (document.wordform.music[i].checked)
      {
      var rad_val = document.wordform.music[i].value;
	  }
   }
for (var i=0; i < document.typeform.kind.length; i++)
   {
   if (document.typeform.kind[i].checked)
      {
      var type_val = document.typeform.kind[i].value;
	  }
   }
   if(type_val=="Drill"){
			window.location="drill.html?yourKey=" + rad_val ;	
		}else{
			window.location="test.html?yourKey=" + rad_val ;	
//		window.open("test.html?yourKey=" + rad_val,'_blank'); 
		}
		return false;
}
