 function OpenWin( Ref, W, H, X, Y, T ) {

        var WinParams = 'status=no,toolbar=no,resizable=yes,menubar=no,scrollbars=no,width=' + W + ',height=' + H + ',left=' + X + ',top=' + Y + ',screenX=' + X + ',screenY=' + Y;
        var w = window.open( 'about:blank', '', WinParams );

        w.document.open;
        w.document.write ('<html><head><title>' + T + '</title></head>' + '<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">'+ '<img src="' + Ref + '"alt="' + T + '"></body></html>');
        w.document.close;      
    }
