/**
 * Открывает страничку с изображением
 *
 * @param string url Урл картинки
 * @param int w Ширина окна
 * @param int h Высота окна
 *
 * @author Victor Yasinovsky
 */
function imagePopup(url, w, h) {
    var imgWin = window.open('', 'url', "width="+w+", height="+h);
    imgWin.document.write(
        '<html>'+
            '<head>'+
                '<title></title>'+
            '</head>'+
        '<body style="margin: 0px;">'+
            '<img src="'+url+'" width="'+w+'" height="'+h+'" onClick="javascript: window.close()" />'+
        '</body>'+
        '</html>'
        );
    imgWin.document.close();
}
