<!--

var n = 0;

function winOpen2(pic, width, height) 
{
	n++;
	x = (640 - width)/2, y = (480 - height)/2;
	if (screen) {
		var y = (screen.availHeight - height)/2;
		var x = (screen.availWidth - width)/2;
	}
		if (screen.availWidth > 1800) { 
		var x = ((screen.availWidth/2) - width)/2; 
	}
	
	var win = window.open("", n, 'width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',left='+x+',titlebar=no,resizable=no,scrollbars=no');
	
	win.document.open();
	win.document.writeln('<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1251"><title>Просмотр изображения</title></head><body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0">');
	win.document.writeln('<table align="center" width="100%" height="100%" cellpadding="0" cellspacing="0" border="0" style="background-image:url(/i/loading.gif); background-repeat:no-repeat"><tr><td>');
 	win.document.writeln('<a title="Закрыть окно" href="#" onclick="self.close()"><img src="'+pic+'" width="'+width+'" height="'+height+'" border="0"></a>');
	win.document.writeln('</td></tr></table></body></html>');
	win.document.close();
}

function winOpen(loc) 
{
	var width = 640;
	var height = 500;
	x = (640 - width)/2, y = (480 - height)/2;
	if (screen) {
		var y = (screen.availHeight - height)/2;
		var x = (screen.availWidth - width)/2;
	}
		if (screen.availWidth > 1800) { 
		var x = ((screen.availWidth/2) - width)/2; 
	}
	var win = window.open(loc, 1, 'width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',left='+x+',titlebar=no,resizable=yes,scrollbars=no');
}


function winOpen3(pic, width, height, title) 
{
	n++;
	x = (640 - width)/2, y = (480 - height)/2;
	if (screen) {
		var y = (screen.availHeight - height)/2;
		var x = (screen.availWidth - width)/2;
	}
		if (screen.availWidth > 1800) { 
		var x = ((screen.availWidth/2) - width)/2; 
	}
	
	var win = window.open("", n, 'width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',left='+x+',titlebar=no,resizable=no,scrollbars=no');
	
	win.document.open();
	win.document.writeln('<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1251"><title>'+title+'</title></head><body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0">');
	win.document.writeln('<table align="center" width="100%" height="100%" cellpadding="0" cellspacing="0" border="0" style="background-image:url(/i/loading.gif); background-repeat:no-repeat"><tr><td>');
 	win.document.writeln('<a title="Закрыть окно" href="#" onclick="self.close()"><img src="'+pic+'" width="'+width+'" height="'+height+'" border="0"></a>');
	win.document.writeln('</td></tr></table></body></html>');
	win.document.close();
}

//-->
