function centerWindow(id, r, pointer) {
    if (document.all)
        var xMax = screen.width, yMax = screen.height;
    else
        if (document.layers)
            var xMax = window.outerWidth, yMax = window.outerHeight;
        else
            var xMax = 640, yMax=480;

    var xOffset = (xMax - 200)/2, yOffset = (yMax - 200)/2;

    if (pointer.href=="#") {
        alert('Ваш голос передается на сервер. Подождите.');
        return false;
    } else pointer.href="#";

    window.open('/vote.php?id='+id+'&rate='+r,'rating','width=300,height=130,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+',copyhistory=no,directories=no, menubar=no,location=no,scrollbars=no,resizable=no');
}
