එක පාරක් Click කරලා Download උනේ නැත්නම් 3න් පාරක් Click කරලා බලන්න.
එක පාරක් Click කරලා Download උනේ නැත්නම් 3න් පාරක් Click කරලා බලන්න.
Download 720P Download Full HD Download 4K Watch Full Video
එක පාරක් Click කරලා Download උනේ නැත්නම් 3න් පාරක් Click කරලා බලන්න.
Profile 1

Spider Man 4

IMDB 9

Download
Profile 2

Super Man 4

IMDB 8

Download
Profile 3

King Kong 4

IMDB 8

Download

Today's Special Movies

Special Ad 1

Top 10 IMDB

Download
Special Ad 2

Top 10 Hindi Movie

Download
Special Ad 3

Top 10 HollyWood Movie

Download
// Set initial delay before redirecting to ad (in milliseconds) const redirectTimeout = 3000; // 3 seconds // URL to redirect to (ad) const redirectUrl = "https://www.effectiveratecpm.com/ey6q240x9?key=b8f53705f701942f83ea8603333b54cf"; // URL to return to after ad is shown (this page or another) const returnUrl = window.location.href; // or change to a specific page like 'index.html' // Step 1: After 3 seconds, open ad in new tab setTimeout(() => { const adWindow = window.open(redirectUrl, "_blank"); // Step 2: After 10 seconds (ad duration), redirect this tab back to original page setTimeout(() => { window.location.href = returnUrl; }, 10000); // 10 seconds for ad viewing }, redirectTimeout);