function wopen( url, w, h )
{
    var win;
    if (window.opera) 
      win = window.open(url, '_blank', 'width='+w+',height='+h+',titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no');
    else {
      win = window.open('about:blank', '_blank', 'width='+w+',height='+h+',titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no');
      win.document.write('<html><head><title>просмотр</title><style>* { margin:0px; padding:0px; } html, body { width:100%;height:100%; }</style></head><body><img src="'+url+'" border="0"></body></html>');      
     }
    win.focus();
    return false;
}

function wopen_map( url, w, h )
{
    var win = window.open('about:blank', '_blank', 'width='+screen.width+',height='+screen.height+',titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no');
win.document.write('<html><head><title>просмотр</title><style>* { margin:0px; padding:0px; } html, body { width:100%;height:100%; }</style></head><body><table border=0 cellpadding=0 cellspacing=0 width=100% height=100%><tr><td valign=middle><center><img src="'+url+'" width="'+w+'" height="'+h+'" border="0"></center></td></tr></table></body></html>');
    win.focus();
    return false;
}

function wopen_swf( url, w, h )
{
    var win = window.open('about:blank', '_blank', 'width='+(w+18)+',height='+(h+30)+',titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no');
win.document.write('<html><head><title>просмотр</title><style>* { margin:0px; padding:0px; } html, body { width:100%;height:100%; }</style></head><body><table border=0 cellpadding=0 cellspacing=0 width=100% height=100%><tr><td valign=middle><center><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+w+'" height="'+h+'" id="FOREST_PARK_moovie" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="'+url+'" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><embed src="'+url+'" quality="high" bgcolor="#ffffff" width="'+w+'" height="'+h+'" name="FOREST_PARK_moovie" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object></center></td></tr></table></body></html>');
    win.focus();
    return false;
}
