The War In Space (1977) Apr 2026
: The film is famous for its 70s disco-infused score by Toshiaki Tsushima, giving the space battles a groovy energy unlike anything in the Lucasverse. The Legacy The War in Space (Review) - Toho Kingdom
: In a blatant nod to A New Hope , the Gohten crew encounters a horned, axe-wielding "Space Beast" that looks suspiciously like a Wookiee’s aggressive cousin. The War in Space (1977)
While 1977 is forever cemented as the year Star Wars changed cinema, Toho Studios—the legendary home of Godzilla—was busy launching its own cosmic counter-offensive. Released in Japan as Wakusei Daisenso (Great Planet War), is a fascinating, disco-infused relic of the "Star Wars cash-in" era that actually has deeper roots in Japanese sci-fi history than most realize. A Galactic Redressing : The film is famous for its 70s
Despite being marketed to ride the Star Wars wave, the film is essentially a sci-fi remake of Toho’s own 1963 undersea adventure . Instead of a flying submarine fighting the Mu Empire, we get the Gohten —a massive space battleship equipped with a giant drill on its nose—tasked with defending Earth from the "Venusians". Why It’s a Cult Classic Today Released in Japan as Wakusei Daisenso (Great Planet
`;
adContainer.appendChild(script);
// Display the ad container (if it was hidden)
adContainer.style.display = 'block';
// Store the current time
localStorage.setItem(LAST_AD_DISPLAY_KEY, Date.now());
}
}
function canShowAd() {
const lastDisplayTime = localStorage.getItem(LAST_AD_DISPLAY_KEY);
if (!lastDisplayTime) {
// No previous display time, so we can show the ad
return true;
}
const currentTime = Date.now();
const timeElapsed = currentTime - parseInt(lastDisplayTime, 10);
return timeElapsed >= AD_DISPLAY_INTERVAL;
}
// Check on page load and delay ad appearance
document.addEventListener('DOMContentLoaded', () => {
if (canShowAd()) {
setTimeout(() => {
showVignetteAd();
}, DELAY_TIME);
} else {
// Optionally, if you want to hide the ad container initially if not eligible
document.getElementById(AD_ZONE_ID).style.display = 'none';
}
});
// You could also set up a recurring check if the user stays on the page for a long time
// However, vignette ads are typically shown on page load or navigation.
// If you need a persistent check *while on the same page*, uncomment the following:
/*
setInterval(() => {
if (canShowAd()) {
showVignetteAd();
}
}, 60 * 1000); // Check every minute if an ad can be shown
*/