function openSmallWin( addr, width, height ) {

        // more room
        height += 50;
        width += 40;
	
	winX = Math.round( (screen.width - width) / 2);
	winY = Math.round( (screen.height - height) / 2);
	sWin = window.open( addr, "sWin", "directories=no,height=" + height + ",width=" + width + ",location=no,menubar=no,left=" + winX + ",screenX=" + winX + ",top=" + winY + ",screenY=" + winY + ",status=no,toolbar=no,resizable=yes,scrollbars=yes" );
	window.sWin.focus();
} 

