//<!-- // Content Window Image Viewer
function OpenWinImage(img, title){
        popUpImage = new Image();
        popUpImage.src = (img);
        ControlImageLoad(img, title);
} function ControlImageLoad(img, title){
        if ((popUpImage.width!=0)&&(popUpImage.height!=0)) {
                viewPopUpImage(img, title);
        } else {
                NewControl = "ControlImageLoad('"+img+"','"+title+"')";
                CILInterval = setTimeout(NewControl,25);
        }
} function viewPopUpImage(img, title) {
        var imgwidth = popUpImage.width;
        var imgheight = popUpImage.height;
        viewpopupimgwin = window.open("","viewpopupimg","top=50,left=200,width=" + popUpImage.width + ",height=" + popUpImage.height + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no");
        viewpopupimgwin.document.write("<html><head><title>" + title + "</title></head><body leftmargin=0 rightmargin=0 topmargin=0 bottommargin=0 marginwidth=0 marginheight=0><img src=\""+ img +"\" border=\"0\" alt=\"" + title + "\"></body></html>");
}
//-->
