सिंगल ब्लास्ट सिंगल लीक सिंगल ही सिंगल गेम मिलेगा । आज ही गेम को ब्लास्ट कराऊंगा डेली पास की 100% गारंटी । गली हो या दिशावर गाजियाबाद हो या फरीदाबाद एक गेम से ही होगी आपकी जिंदगी आबाद
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function () {
scrollFunction()
};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
document.getElementById("movetop").style.display = "block";
} else {
document.getElementById("movetop").style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}