﻿function openNewWindow(img_src, width, height) {
        var newWindow = window.open("", "", "location=no, directories=no, fullscreen=no, menubar=no, status=no, toolbar=no, width=" + width + ", height=" + height + ", scrollbars=no");        
        newWindow.document.writeln("<html><head><title>Catellus</title></head><body style='margin: 0; padding: 0;'><a href='javascript:window.close();' title='Click to close'><img src='" + img_src + "' alt='Click to close' id='lg_img' border='0'/></a></body></html>");            
        newWindow.document.close();
}

