function doLoad(numimg) {
	width=600+50; // Ширина открываемого окна
	height=600;// Высота открываемого окна

	if (screen.availWidth){
		a=(screen.availWidth -width)/2;
		b=(screen.availHeight -height)/2-50;
	}else{
		a=0;
		b=0;
	}
	window.open(numimg,"","menubar=no,scrollbars=1,resizable=1,width="+width+",height="+height+",top="+b+",left="+a);
}

