var date="";

function SelectRb(radio) {
	// alle auf false
	for (i=0;i<document.suche.Termin.length;i++) {
		document.suche.Termin[i].checked=false;
	}
	document.suche.Termin[radio].checked=true;
}

function newWindow(url,width,height) {
	strRes="'resizable=no,width=" + width + ",height=" + height + "',top=150,left=150";
	mywindow=open(url,'myname',strRes);
	mywindow.location.href = url;

	if (mywindow.opener == null) mywindow.opener = self;
}

function set_date(field) {
	document.suche[field].value = date;
	SelectRb(1);
	mywindow.close();
}
