<!--
function openImageWindow(theURL) {

var popW = 20, popH = 20;

var left = (screen.width)/2, top = (screen.height)/2;

window.open(theURL,'image','scrollbars=no','toolbar=no','width=' + popW + ',height=' + popH + ',top=' + top + ',left=' + left);
}
//-->
