var popupHandle;

function displayPhoto(id) {
  var screenX,screenY,properties;
  screenY = (window.screen.availHeight - 35);
  screenX = (window.screen.availWidth - 10);
  properties = "toolbar=no,location=no,status=no,scrollbars=yes,height=" + screenY + ",width=" + screenX + ",left=0,top=0";
  popupHandle = open("/users/show_photo.aspx?id=" + id,'Photo',properties);
  popupHandle.focus();
}

function ConfirmRemove(desc) {
  var yesNo=confirm('Are you sure you wish to remove ' + desc + '?');
  if (yesNo) {
    return true;
  } else {
    return false;
  }
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}