function CL_openWin(page,winName,width,height,centred,params,addDefault){if(addDefault){params="location=yes,menubar=yes,resizable=yes,scrollbars=no,toolbar=yes,status=yes,"+params}if(width!=0&&height!=0){params+=",width="+width+",height="+height}var newWin=window.open(page,winName,params);if(newWin.focus){newWin.focus()}if(centred&&screen&&newWin.moveTo){var x=(screen.width/2)-(width/2);var y=(screen.height/2)-(height/2);newWin.moveTo(x,y)}return newWin};