<!-- 
function openImageWin(page,horz,vert) {
if (document.all || document.layers || document.getElementById ) {
w = screen.availWidth;
h = screen.availHeight;
}
var leftPos = (w-horz)/2;
var topPos = (h-vert)/2;
OpenImage = window.open(page,'','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=' + horz + ',height=' + vert + ',top=' + topPos + ',left=' + leftPos );
OpenImage.focus();
}
//-->
