Advertisement
johnburn

Untitled

Aug 23rd, 2011
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var ty = 0;
  2. var sitio = encodeURI('http://www.cpalead.com');
  3.  
  4. function getsome() {
  5.     ty = ty + 1;
  6. };
  7. var my_window = null;
  8.  
  9. function wopen2(url, param, width, height, scrollbar, resize) {
  10.     width += 32;
  11.     height += 96;
  12.     wleft = (screen['width'] - width) / 2;
  13.     wleft = wleft - 90;
  14.     wtop = (screen['height'] - height) / 2;
  15.     wtop = wtop - 90;
  16.     wtop = wtop - 90;
  17.     wtop = wtop - 50;
  18.     if (wleft < 0) {
  19.         width = screen['width'];
  20.         wleft = 0;
  21.     };
  22.     if (wtop < 0) {
  23.         height = screen['height'];
  24.         wtop = 0;
  25.     };
  26.     my_window = window['open'](url, param, 'width=' + width + 'height=' + height + ', ' + 'left=' + wleft + ', top=' + wtop + ', ' + 'location=no, menubar=no, status=no, toolbar=no, scrollbars=' + scrollbar + ', resizable=' + resize);
  27.     my_window['focus']();
  28.     timer();
  29. };
  30.  
  31. function timer() {
  32.     if (ty == 1) {
  33.         setTimeout("check_func()", 1000);
  34.     };
  35. };
  36.  
  37. function check_func() {
  38.     if (false == my_window['closed']) {
  39.         timer();
  40.     } else {
  41.         window['location'] = '/pass.php';
  42.     };
  43. };
  44.  
  45. function valida_edad() {
  46.     wopen2('http://www.facebook.com/sharer/sharer.php?locale=fi_FI&u=' + sitio + '&src=sp', 'video_prom', 350, 209, 'no', 'no');
  47. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement