var win=null;
function NewWin(imgname,titname,w,h)
{
	LeftPosition=(screen.width)?(screen.width-w)/2:100;
	TopPosition=(screen.height)?(screen.height-h)/2:100;

	settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,location=no,directories=no,status=no,menubar=yes,toolbar=no,resizable=no';
	if (win!=null) win.close();
	win = window.open("",'imgwin',settings,true);
	mycontent = "<html><head><title>"+titname+" :: "+'ЧП «Баленко»'+"</title></head>";
	mycontent += "<body rightmargin=0 leftmargin=0  bottommargin=0 topmargin=0 marginheight=0 marginwidth=0><img src='"+imgname+"' alt='"+titname+"'></body></html>";
	win.document.clear();
	win.document.write(mycontent);
	win.focus();
}