<!--
function popitup(url)
{
	newwindow=window.open(url,'name','resizable,scrollbars=yes,height=600,width=900');
	if (window.focus) {newwindow.focus()}
}

function popitup2(url)
{
	var TopPos;
	var LeftPos;
LeftPos = (screen.width) ? (screen.width-500)/2 : 0;
TopPos = (screen.height) ? (screen.height-700)/2 : 0;

	newwindow=window.open(url,'name','resizable,scrollbars=yes,height=500,width=700,top=' + TopPos + ',left=' + LeftPos + '' );
	if (window.focus) {newwindow.focus()}
}

-->