function openWindow(href,width,height,title) {    
	var wind_img=window.open('','_blank','width='+((width>screen.width?screen.width:width)+(height>(screen.height-64)?18:0))+',height='+(height>(screen.height-64)?(screen.height-64):height+0)+(height>(screen.height-64)||width>screen.width?',scrollbars=yes':'')+',resizable=yes');
	wind_img.focus();    
	wind_img.document.open();    
	wind_img.document.write('<html><head><META http-equiv="Content-Type" content="text/html; charset=windows-1251"><title>'+title+'</title></head>');    
	wind_img.document.write('<body leftmargin="0" rightmargin="0" topmargin="0" bottommargin="0" marginwidth="0" marginheight="0" style="margin: 0; overflow: hidden"><table border="0" cellspacing="0" cellpadding="0" height="100%" width="100%"><th><a href="javascript:self.close();"><img align="absmiddle" hspace="0" vspace="0" src="'+href+'" border="0" width="'+width+'" height="'+height+'" title="Закрыть" alt="'+title+'" galleryimg="no"></a></th></table>');
	wind_img.document.write('</body></html>');
	wind_img.document.close();    
	return false;
}

function openPhotoWin(url, width, height) { 
	var winPh = window.open(url, 'winPh', 'width='+(width+20)+', height='+(height+30)+', status=1, scrollbars=0, menubar=0, toolbar=0', resizable=1);
}  
