function previewBig(a, mess) {
    if (typeof(mess) == 'undefined') {
        mess = 'Большое изображение недоступно';
    }
    img = new Image();
    img.src = a.href;
    img.onload = function(){
        if (this.height != 0 && this.width != 0) {
            wopen(this.src, 'height=' + this.height + ',width=' + this.width);
        }
    }
    img.onerror = function() {
        alert(mess);
    }
    return false;
}
		
function wopen(src, params) {
/*
scr = document.createElement('script');
scr.src = '/.js/wopen.js'; "window.open('"+src+"', 'w', '" + params + "');";
//scr.appendChild(txt);
document.body.appendChild(scr);
return;    
*/
    return window.open(src, '', params );
}
