function open_wnd(id, name, width, height)
{
	wx = (screen.availWidth - width)/2;
	wy = (screen.availHeight - height)/2;

	wnd=window.open("/picture.php?id="+id+"&name="+name+"&width="+width+"&height="+height, "_blank", "width="+width+",height="+height+",status=no,resizable=0,scrollbars=0,toolbar=no,menubar=no,left="+wx+",top="+wy);
//	wnd=window.open(id, "_blank", "width="+width+",height="+height+",status=no,resizable=0,scrollbars=0,toolbar=no,menubar=no,left="+wx+",top="+wy);
}