function popupExternal(fullUrl) { url = '../main/externalLink.php?url=' + fullUrl; winExternal = window.open(url, 'windowExternal', 'width=625, height=300, location=yes, status=yes, menubar=yes, toolbar=yes, scrollable=yes, scrollbars=yes, resizable=yes'); winExternal.focus(); } function resizeExternal(){ self.resizeTo(800,600) } function popupSearch() { window.open("search.php", "windowSearch", "width=460,height=460,status=yes,menubar=no,toolbar=no,scrollable=yes,scrollbars=yes,resizable=yes"); } function popupBronto(strLanding) { window.open(strLanding, "windowEmail", "width=530,height=460,status=yes,menubar=no,toolbar=no,scrollable=yes,scrollbars=yes,resizable=yes"); } function popupPhoto(strImage, strCaption) { strUrl = "popup-photo.php?image=" + strImage + "&caption=" + strCaption; oWindow = window.open(strUrl, 'winPhoto', 'width=550,height=450,status=no,menubar=no,toolbar=no,scrollable=yes,scrollbars=yes,resizable=yes'); oWindow.focus(); } self.focus(); function popupDonation(donationKey) { url = 'https://www.hcfmstore.org/main/donation-popup.php?key=' + donationKey + '&s=1'; winDonation = window.open(url, 'windowDonation', 'width=500,' + 'height=600,' + 'status=yes,' + 'menubar=no,' + 'toolbar=no,' + 'scrollable=yes,' + 'scrollbars=yes,' + 'resizable=yes'); winDonation.focus(); } function popupImage(strImage, iWidth, iHeight) { strUrl = 'banner-image-display.php?image=' + strImage; iWidth += 50; iHeight += 100; oWindow = window.open(strUrl, 'banner_image', 'width=' + iWidth + ',height=' + iHeight + ',status=no,menubar=no,toolbar=no,scrollable=no,scrollbars=no,resizable=yes'); oWindow.resizeTo(iWidth ,iHeight); oWindow.focus(); }