// © Copyright 2007 AlmaTerra. All rights reserved.  Created by Iuly.


function open_csi_wnd(path,pic,type,w,h)
{
var windowName='picw';
var scw=w;
var sch=parseInt(h)+55;
var nWindow = window.open("",windowName,"fullscreen=no,directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=no, screenX=0,screenY=0,Width="+scw+",Height="+sch);
nWindow.document.write('<HTML> <HEAD><TITLE>'+pic+'</TITLE> <STYLE> { box-sizing: border-box; moz-box-sizing: border-box } HTML { BACKGROUND: black; HEIGHT: 100% } BODY { BORDER-TOP-WIDTH: 0px; PADDING-RIGHT: 0px; PADDING-LEFT: 0px; BORDER-LEFT-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; PADDING-BOTTOM: 0px; OVERFLOW: auto; COLOR: blue; MARGIN: 0px; PADDING-TOP: 0px; BORDER-RIGHT-WIDTH: 0px } </STYLE> </HEAD> <BODY bgcolor="#222222" topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" onLoad="this.focus()"> <table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%"> <tr> <td valign="middle" align="center"> <img src="'+path+'/'+pic+'.'+type+'" width="'+w+'" height="'+h+'" border="0"> </td> </tr> </table> </BODY> </HTML>');
nWindow.document.close();
nWindow.resizeTo(scw,sch);
nWindow.focus();
}

