function cx_newimage(source)
{
  rt = new Image;
  rt.src = source;
  return(rt);
};

function cx_image(welches,womit)
{
    document.images[welches].src = eval(womit).src;
};

function cx_console(url, nam, w, h, roll)
{
	if (roll=="") roll="no";
	cx_win = window.open(url, nam, "left=342,top=222,width=" + w + ",height=" + h + ",toolbar=no,status=no,scrollbars=" + roll);
	cx_win.focus ();
};

function whoIs (nn)
{
	cx_console ('whois.php?whoIsNickname=' + nn, 'whois', 320, 480, 'yes');
};

function whoIsSel(snn)
{
	vnn = snn[snn.selectedIndex].value;
	snn.selectedIndex = 0;
	if (vnn == '-') return;
	whoIs (vnn);
};

