function fast_gallery_window(image,width,height) {
			var left = (screen.availWidth/2) - (width/2);
			var top = (screen.availHeight/2) - (height/2);
			var image_url = image;

			window.open('index.php?file=fast_gallery&show=' + image_url + '&clean=yes', 'fast_gallery', 'scrollbars=0, toolbar=0, statusbar=0, status=0, resizable=no, location=no, width='+width+', height='+height+', left='+left+', top='+top);
		}
