function wsquery()
{
var weburl = document.getElementById('val').value;

var methode = document.getElementsByName("methode");
for (i=0; i<methode.length; i++)
if (methode[i].checked)
methodeVal = methode[i].value;

var proto = document.getElementsByName("proto");
for (i=0; i<proto.length; i++)
if (proto[i].checked)
protoVal = proto[i].value;

queryResult = xmldata('Result',core + 'extend/ext_wsquery.php?swtype=domval&val=' + weburl + '&methode=' + methodeVal + '&proto=' + protoVal);
}