function newWin(src,w,h){
	if(w<600) w=600;
	if(h<400) h=400;
	x=(self.outerWidth-w)/2+self.screenX;
	y=(self.outerHeight-h)/2+self.screenY;
	var confirmWin = window.open(src,'','width=' + w + ',height=' + h + ',menubar=no,location=no,toolbar=no,scrollbars=yes,screenX=' + x + ',screenY=' + y );
	if(confirmWin.opener==null) confirmWin.opener = self;
  
  return confirmWin;
} 

function ShowFullImg( src ) {
  hWin = newWin( '', 100, 100 );
  hWin.document.write('<center><img src=' + src + '><br><a href="#" onclick="window.close();">закрыть</a></center>');
}

