function open_window(link,w,h)
{
var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=no,scrollbars=no";
newWin = window.open(link,'newWin',win);
};

function open_bigphoto(width1,height1,image_path,title1){
	var w1=window.open('','','menubar=no,toolbar=no,top=10,left=10,width=' + width1 + ',height=' + height1)
	w1.document.open()
	var sz='<html><head><title>' + title1 + '</title>'
	sz+='</head>'
	sz+='<body bgcolor="#F2DC87" text="#000000" marginwidth="0" marginheight="0" leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" onload="window.print()">'
	sz+='<a href="javascript:void(0)" onClick="self.close()">'
	sz+='<img src="'+image_path+'" width="' + width1 + '" height="' + height1 + '" border="0" alt="закрыть окно"></a>'
	sz+='</body></html>'
	w1.document.write(sz)
	w1.document.close()
}