const url = 'https://my.truthstar.com/api/horoscopeinput.php'; const windowName = 'HoroscopeInputPopup'; // Define popup window features: width, height, scrollbars, resizable const windowFeatures = 'width=800,height=600,scrollbars=yes,resizable=yes';
// Open the new window const popupWindow = window.open(url, windowName, windowFeatures);
// Optional: Focus the popup window if it was already open if (popupWindow) { popupWindow.focus(); } else { // This block executes if the popup was blocked by a browser's popup blocker. // You might want to inform the user. alert('Popup blocked! Please allow popups for this site to view the horoscope input.'); } }
© 2025 by Truthstar Future Vision Pvt Ltd All Right Reserved