
//Image popup
var win;
function ImagePopUp(url){
    if (url){
        if (win) win.close();
        win = window.open('about:blank', '', 'width=515,height=750,status=0,toolbar=0,location=0,scrollbars=0,menubar=0,resizable=1');
        win.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><html><head><title>Preview</title><link rel="stylesheet" type="text/css" href="/css/cms/oggi.css"></head><body>');
		win.document.write('<div class="previewItem">');
   win.document.write(' <div class="header">');
      win.document.write('<a href="#" onclick="javascript:window.close();return false;" class="close"></a>');
      
    win.document.write('</div>');
   
    win.document.write('<IMG WIDTH="515" HEIGHT="655" SRC="'+url+'" onload="window.opener.resize()" style="display: none; border: 0px;">');
		
        win.document.write('<TABLE id="maintable" width=515 height=750 style="display: block">');
        win.document.write('<TR><TD valign=center align=center style="font: 10pt Tahoma">Подождите, идет загрузка изображения...</TD></TR>');
        win.document.write('</TABLE></div></body></html>');
    }
}

function resize(){
    win.document.images[0].style.display = 'block';
    win.document.getElementById('maintable').style.display = 'none';
  //  var w = win.document.images[0].width+9;
    //var h = win.document.images[0].height+29;
	var w = win.document.images[0].width+1;
    var h = win.document.images[0].height+100;
    win.resizeTo(w, h);
    win.focus();
}