<!--

function do_popup(page) {
	var w = 585;
	var h = 600;
	var LeftPosition=(screen.width)?(screen.width-w)/2:100;
	var TopPosition=(screen.height)?(screen.height-h)/2:100;
	window.open(page,'NewWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=' + w + ',height=' + h + ' ,top=' + TopPosition + ',left=' + LeftPosition);
}


-->