Your Moon Sign

Horoscope Chart

Horoscope ChartAscendant Code: 1 (Aries) Moon Sign Code: 10 (Capricorn)

Find your ascendent Sign

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.'); } }

Categories