/* launchPopup() opens a JavaScript window */
function launchPopup(url) {
  suppWindow = window.open(url, '_blank', 'scrollbars=yes,resizable=yes,menubar=yes,location=yes,width=738,height=500');
};

function launchPopupWide(url) {
  suppWindow = window.open(url, '_blank', 'scrollbars=yes,resizable=yes,menubar=yes,location=yes,width=738,height=500');
};

function launchPopupPicture(url) {
  suppWindow = window.open(url, '_blank', 'scrollbars=yes,resizable=yes,menubar=yes,location=yes,width=770,height=500');
};

function launchPopupSlideShow(url) {
  suppWindow = window.open(url, '_blank', 'scrollbars=no,resizable=no,menubar=no,location=no,width=480,height=300');
};

function launchPopupFullScreen(url) {
  suppWindow = window.open(url, '_blank', 'scrollbars=yes,resizable=yes,menubar=yes,location=yes,width=800,height=500');
};
