function support() {
	alert("Свяжитесь пожалуйста с саппортом ICQ: 577230389 или keywordsmonster@gmail.com");
}

var win = null;

function openBigPicture(url, title) {
    win = null;
    tempImg = new Image();
    tempImg.src = url;
    imageOpener(url, title);
}
function imageOpener(url, title) {
    if ((tempImg.width != 0) && (tempImg.height != 0)) {
        var canScroll = 0;
        var w = tempImg.width;
        var h = tempImg.height;
        if (w > (screen.width - 150)) {
        	w = screen.width - 150;
        	canScroll = 1;
        }
        if (h > (screen.height - 150)) {
        	h = screen.height - 150;
        	canScroll = 1;
        }
        var left = (screen.width - w) / 2;
        var top = (screen.height - h) / 2;
        
        if(win != null) {
            win.close();
        }
        win = window.open('', 'Popup', 'width=' + w + ',height=' + h + ',left=' + left + ',top=' + top + ',menubar=0,location=0,resizable=0,scrollbars=' + canScroll + ',directories=0,scroll=' + canScroll + ',status=0,menubar=0,locationbar=0,statusbar=0,titlebar=0,toolbar=0');
        win.document.open();
        win.document.write("<html><head><title>" + title + "</title><link rel=\"stylesheet\" type=\"text/css\" href=\"/resources/styles/styles.css\"></head><body><img src='" + url + "' width='" + tempImg.width + "' height='" + tempImg.height + "'></body></html>");
        win.document.close();
        win.moveTo(left, top);
        win.focus();
    } else {
    		toFunc = "imageOpener('" + url + "', '" + title + "')";
    		tim = setTimeout(toFunc, 20);
    }
}
