function centerWindow4(adress) {
if (document.all)
var xMax = screen.width, yMax = screen.height;
else
if (document.layers)
var xMax = window.outerWidth, yMax = window.outerHeight;
else
var xMax = 800, yMax=460;
var xOffset = (xMax - 800)/2, yOffset = (yMax - 460)/2;
window.open(adress, "Popup", 'scrollbars=yes,menubars=no,toolbars=no,resizable=no,width=720,height=550,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+'');
}