
function PopupPic(sPicURL) {
	window.open( "/gallery/popup.htm?"+sPicURL, "", "resizable=1,width=800,height=600");
}

function openWindow(url, name, w, h) {
  var winX = 50;
  var winY = 50;

  if (parseInt(navigator.appVersion) >= 4) {
    winX = (screen.availWidth - w)*.1;
    winY = (screen.availHeight - h)*.1;
  }

  popupWin = window.open(url, name, 'location=1,directories=0,status=1,menubar=1,scrollbars=1,width=' + w + ',height=' + h + ',left=' + winX + ',top=' + winY);
}



