function gallery_popup_wnd(id, width, height){

    if(id == "" || id == null) {
		return;
	}
	/*
	if (width == "" || width == null || height == "" || height == null) {
		width = 800;
		height = 600;
	}
	*/
	wx = 0;//(screen.availWidth-width)/2;
    wy = 0;//(screen.availHeight-height)/2;

	width1 = screen.availWidth;
	height1 = screen.availHeight;

    wnd=window.open("/party/gallery/gallery_popup_picture.phtml?id="+id+"&width="+width+"&height="+height, "_blank", "width="+(width1)+",height="+(height1)+",status=no,resizable=no,directories=no,scrollbars=yes,fullscreen=yes,toolbar=no,menubar=no, left="+wx+",top="+wy);
}

