// JavaScript Document
function openGalleryPopup(url) {
var galleryWidth=712;
var galleryHeight=580;
var leftPos=0;
if (screen.availWidth>galleryWidth) {
  leftPos=Math.round((screen.availWidth-galleryWidth)/2)
}
var newWindow=window.open(url,"_blank","resizable=no,scrollbars=no,location=yes,toolbar=no,status=no,top=0,screenY=0,left="+leftPos+",screenX="+leftPos+",height="+galleryHeight+",width="+galleryWidth);
return false
}

