Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. function dosub(){
  2. var capcha=trim(document.mainf.capcha.value);
  3. if (capcha==""){
  4. getcapcha();
  5. getadvblock();
  6. return false;
  7. }
  8. var lcapcha=capcha.toLowerCase()
  9.  
  10. if (capcha!=ctext){
  11. alert("Invalid numbers on the picture\nIf you can recognize symbols, just click 'Continue' or Enter");
  12. document.mainf.capcha.value="";
  13. return false;
  14. }
  15. document.mainf.capcha.value="";
  16. moneycount=moneycount+siteprice;
  17. sessmoneycount=sessmoneycount+siteprice;
  18. if (sessmoneycount>=1600){
  19. url="updmoney.php?moneycount="+moneycount+"&sessmoneycount="+sessmoneycount;
  20. document.location=url;
  21. }
  22. setCookie("moneycount",moneycount, "Mon, 01-Jan-2025 00:00:00 GMT", "/");
  23. smoneycount=moneycount/100;
  24. document.getElementById('moneycount').innerHTML=smoneycount+" $";
  25. getadvblock();
  26. getcapcha();
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement