// JavaScript Document
function op_img(img_path, w, h) {
	if( w>0) Sz = w; else Sz = h
	Dir = img_path.substr(img_path.indexOf(".")-1,1)

	if(Dir == 'v') {
		h = Sz;
		w = '' + Math.round(h/1.5);
	}else{
		w = Sz;
		h = '' + Math.round(w/1.5);
	}

	str = "location=no,width="  +  w + ",height=" + h;
	
	newWindow = window.open("", '', str);
	newWindow.document.write(
		'<html><head><title>Termoapaki - Eurostan Uyut</title><meta http-equiv="Content-Type" content="text/html; charset=windows-1251">' +
		'<link href="termoapaki_rus.css" rel="stylesheet" type="text/css"></head>' +
		'<body onload="window.resizeTo(window.document[\'imnkar\'].width, window.document[\'imnkar\'].height)" bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">' +
		'<div align="center"><img src="' + img_path + '" id="imnkar" name="imnkar" class="nk" border="0" alt="Eurostan Termoapaki" onClick="javascript:window.close()"/></div></body></html>');

	newWindow.focus();
}