function PopWindowGallery (url,w,h,scroll,resize,center,max) {
	if (navigator.appName.indexOf("Microsoft") != -1 && navigator.platform.indexOf("Mac") != -1) { w -= 30; h -= 30; }	
	if (center) { var winPos = ',top='+((screen.height - h) / 2)+',left='+((screen.width - w) / 2); }
	var scrollArg = (scroll == false) ? '' : ',scrollbars=1';
	var resizeArg = (resize == false) ? '' : ',resizable=1';
	flyout = window.open (url,"newin"+scroll+resize+center,"width=" + w + ",height=" + h + scrollArg + resizeArg + winPos);
	if (max == true) {
		flyout.moveTo(0,0);
		flyout.resizeTo(screen.availWidth,screen.availHeight);	}
	else { flyout.resizeTo(w,h); }
	flyout.focus();
}

