function openPopup(theURL,winName,features) {
  if (features) {
    features += ',';
  }
  features += 'fullscreen=no,scrollbars=no,resizable=no,menubar=no,toolbar=no,directories=no,location=no,status=no';
  //features = 'height=200,width=200,scrollbars=no,resizable=no,menubar=no,toolbar=no,location=no';
  newwindow = window.open(theURL,winName,features);
  if (window.focus){
    newwindow.focus();
  }
  newwindow.setTimeout('newwindow.close())',2000);
  return newwindow;
} // openWindow

function openCalendarPopup(theURL,source) {
  coord = getAnchorWindowPosition(source,true);
  xpos = coord.x;
  ypos = coord.y;
  calwindow = openPopup(theURL,'popcalendar','alwaysRaised=yes,dependent=yes,hotkeys=no,height=180,width=190,screenX=' + xpos + ',screenY=' + ypos + ',left=' + xpos + ',top=' + ypos);
  return false;
} // openCalendarPopup

function openFotoPopup(theURL,source) {
  coord = getAnchorWindowPosition(source);
  xpos = coord.x;
  ypos = coord.y;
  fotowindow = openPopup(theURL,'popfoto','alwaysRaised=yes,dependent=yes,hotkeys=no,height=100,width=240,screenX=' + xpos + ',screenY=' + ypos + ',left=' + xpos + ',top=' + ypos);
  return false;
} // openFotoPopup

