Advertisement
Guest User

Untitled

a guest
Jun 30th, 2016
28,391
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var Base64 = {_keyStr:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",encode:function(r){var t,e,o,a,h,n,c,d="",C=0;for(r=Base64._utf8_encode(r);C<r.length;)t=r.charCodeAt(C++),e=r.charCodeAt(C++),o=r.charCodeAt(C++),a=t>>2,h=(3&t)<<4|e>>4,n=(15&e)<<2|o>>6,c=63&o,isNaN(e)?n=c=64:isNaN(o)&&(c=64),d=d+this._keyStr.charAt(a)+this._keyStr.charAt(h)+this._keyStr.charAt(n)+this._keyStr.charAt(c);return d},decode:function(r){var t,e,o,a,h,n,c,d="",C=0;for(r=r.replace(/[^A-Za-z0-9\+\/\=]/g,"");C<r.length;)a=this._keyStr.indexOf(r.charAt(C++)),h=this._keyStr.indexOf(r.charAt(C++)),n=this._keyStr.indexOf(r.charAt(C++)),c=this._keyStr.indexOf(r.charAt(C++)),t=a<<2|h>>4,e=(15&h)<<4|n>>2,o=(3&n)<<6|c,d+=String.fromCharCode(t),64!=n&&(d+=String.fromCharCode(e)),64!=c&&(d+=String.fromCharCode(o));return d=Base64._utf8_decode(d)},_utf8_encode:function(r){r=r.replace(/\r\n/g,"\n");for(var t="",e=0;e<r.length;e++){var o=r.charCodeAt(e);128>o?t+=String.fromCharCode(o):o>127&&2048>o?(t+=String.fromCharCode(o>>6|192),t+=String.fromCharCode(63&o|128)):(t+=String.fromCharCode(o>>12|224),t+=String.fromCharCode(o>>6&63|128),t+=String.fromCharCode(63&o|128))}return t},_utf8_decode:function(r){for(var t="",e=0,o=c1=c2=0;e<r.length;)o=r.charCodeAt(e),128>o?(t+=String.fromCharCode(o),e++):o>191&&224>o?(c2=r.charCodeAt(e+1),t+=String.fromCharCode((31&o)<<6|63&c2),e+=2):(c2=r.charCodeAt(e+1),c3=r.charCodeAt(e+2),t+=String.fromCharCode((15&o)<<12|(63&c2)<<6|63&c3),e+=3);return t}};
  2.  
  3. function ambilParam(name, url) {
  4.     if (!url) url = window.location.href;
  5.     name = name.replace(/[\[\]]/g, "\\$&");
  6.     var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
  7.         hasil = regex.exec(url);
  8.     if (!hasil) return null;
  9.     if (!hasil[2]) return '';
  10.     return decodeURIComponent(hasil[2].replace(/\+/g, " "));
  11. }
  12.  
  13. function pindahLapak() {
  14.     var e = 5, n = document.getElementById("dvCountDown"), l = document.getElementById("lblCount");
  15.     n.style.display = "block", l.innerHTML = e, setInterval(function() {
  16.         e--, l.innerHTML = e, 0 == e && (n.style.display = "none", klDiemAja.style.display = "block", window.location = unescape(Base64.decode(ambilParam("url"))))
  17.     }, 1e3)
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement