// JavaScript Document by silke kaiser LIMX

function ixxxsearch(s){
	ret = false;
	d = document.getElementById('searchform');
	w = d.wosuchen;
	for(i=0;i<w.length;i++){
		if(w[i].checked){
			c=w[i].value;
		}
	}
	if (c!='www') {
		d.submit();
	} else {
		m = document.getElementById('metasearch');
		m.query.value = s;
		m.submit();
	}
	return ret;
}


