<!--
function poptoner(url)
{
	var w = 550;
	var h = 250;
	var winl = (screen.width-w)/2;
	var wint = (screen.height-h)/2;
	if (winl < 0) winl = 0;
	if (wint < 0) wint = 0;
	newwindow=window.open(url, "", "height="+h+",width="+w+",top="+wint+",left="+winl+",toolbar=0,menubar=0,statusbar=0")
	if (window.focus) { newwindow.focus() }
	return false;
}
// -->
