// password requirement function checkPasswordReq(pwd) { if (pwd.length < 8) { isBest = false; } else { isBest = true; } return isBest } // to get the queries of the URL function getQueryStringParams(params, url) { // first decode URL to get readable data var href = decodeURIComponent(url || window.location.href); // regular expression to get value var regEx = new RegExp('[?&]' + params + '=([^&#]*)', 'i'); var value = regEx.exec(href); // return the value if exist return value ? value[1] : null; } /** GO TO TOP Button **/ //Get the button: var myTopBtn = document.getElementById("topBtn"); // 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) { myTopBtn.style.display = "block"; } else { myTopBtn.style.display = "none"; } } // When the user clicks on the button, scroll to the top of the document function topFunction() { document.body.scrollTop = 0; // For Safari document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE and Opera }