function popup(file,name,parameters) {
  f1 = window.open(file,name,parameters)
}

function Go(form) {
  var DieAuswahl = form.auswahl[form.auswahl.selectedIndex].value;
  if (DieAuswahl != '') { popup(DieAuswahl, "funkreich", "width=780,height=570,location=yes,resizable=yes,menubar=yes,status=yes,toolbar=yes,scrollbars=yes"); }
}

function profile(id) {
	if (id != 0) {
		popup('/profile/?uid='+id, 'profile', 'Width=220,Height=270,menubar=no,toolbar=no,status=no,resizeable=no,scrollbars=no');
	}
}

var msie = (document.all) ? 1 : 0;
