// address book popup
function openAddressPop() {
  aWindow=window.open(addURL, "AddressBook", glbStdFeatures);
  aWindow.focus();
}

// add to favorites popup
function openFavoritesPop() {
  aWindow=window.open(favLink, "AddFavorite", glbStdFeatures);
  aWindow.focus();
}

// add to scrapbook popup
function openScrapbookPop(){
  var aWindow = window.open(scrapLink, "SaveScrap", glbStdFeatures);
  aWindow.focus();
}

// print popup
function openPrintPop(pageUrl){
  aWindow=window.open(ahost + "/printpopup.pd?productNumber=" + prodNumber, "Print", "toolbar=no,scrollbar=no,width=400,height=400,resizable");
}

// view photo popup
function openViewPhotoPop(pageUrl){
  aWindow=window.open(ahost + "/viewphoto.pd?" + photoVars, "ViewPhoto", "toolbar=no,scrollbar=no,width=400,height=400,resizable");
}

// save VCS file popup
function openInvVcsPop(){
  var vWindow = window.open('addtocalendar.pd?e=' + eventNum + '&i=' + itemNum + '&m=' + memberNum, 'Instructions','width=430,height=440,top=25,left=25,resizable=1,scrollbars=1');
  vWindow.focus();
}
