Advertisement
Guest User

fakeMU

a guest
Jan 20th, 2012
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 41.67 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta property="og:image" content="http://www.rlsgeek.com/wp-content/uploads/2011/07/megaupload_logo.jpg" />
  5. <meta charset="utf-8">
  6. <title>MEGAUPLOAD IS BACK, NEW MEGAUPLOAD SITE - The leading online storage and file delivery service - </title>
  7. <link rel="stylesheet" type="text/css" href="http://wwwstatic.megaupload.com/mucss/style.css?v=1" />
  8. <link rel="stylesheet" type="text/css" href="http://wwwstatic.megaupload.com/mucss/start.css" />
  9. <link rel="stylesheet" type="text/css" href="http://wwwstatic.megaupload.com/mucss/en/style.css?v=1" />
  10. <link rel="stylesheet" type="text/css" href="http://wwwstatic.megaupload.com/mucss/en/start.css" />
  11.  
  12. <link rel="icon" href="faviconmu.ico" type="image/x-icon">
  13. <link rel="shortcut icon" href="faviconmu.ico" type="image/x-icon">
  14.  
  15.  
  16. <script type="text/javascript"><!--
  17. var errormsg='';
  18. var imageDir='muimg/';
  19. var langSelector='en';
  20. var selectParams = new Object();
  21. var selects = new Object();
  22. --></script>
  23.  
  24. <script type="text/javascript" src="http://wwwstatic.megaupload.com/mujs/libs/jquery-1.6.2.min.js"></script>
  25. <script type="text/javascript" src="http://wwwstatic.megaupload.com/mujs/jquery.autocomplete.js"></script>
  26.  
  27. <script type="text/javascript">
  28.  
  29. var $j = jQuery.noConflict();
  30.  
  31. </script>
  32. <script type="text/javascript" src="http://wwwstatic.megaupload.com/mujs/lang.js"></script>
  33. <script type="text/javascript" src="http://wwwstatic.megaupload.com/mujs/onhover.js"></script>
  34. <script type="text/javascript" src="http://wwwstatic.megaupload.com/mujs/onhover.js"></script>
  35. <script type="text/javascript" src="http://wwwstatic.megaupload.com/mujs/swfobject.js"></script>
  36. <script type="text/javascript" src="http://wwwstatic.megaupload.com/mujs/preload.js" ></script>
  37.  
  38. <script>
  39.  
  40. function newImage(src) {
  41. var res = new Image();
  42. res.src = src;
  43. return res;
  44. }
  45.  
  46. preloadimages("http://wwwstatic.megaupload.com/muimg/lang/langs_pull.png", "http://wwwstatic.megaupload.com/muimg/lang/langs_butts.png");
  47. </script>
  48. <script type="text/javascript">
  49. var langImages=new Array();
  50. langImages['en']=new Array();
  51. langImages['es']=new Array();
  52. langImages['pt']=new Array();
  53. langImages['de']=new Array();
  54. langImages['fr']=new Array();
  55. langImages['it']=new Array();
  56. langImages['nl']=new Array();
  57. langImages['dk']=new Array();
  58. langImages['se']=new Array();
  59. langImages['fi']=new Array();
  60. langImages['pl']=new Array();
  61. langImages['ru']=new Array();
  62. langImages['jp']=new Array();
  63. langImages['cn']=new Array();
  64. langImages['ct']=new Array();
  65. langImages['kr']=new Array();
  66. langImages['vn']=new Array();
  67. langImages['tr']=new Array();
  68. langImages['sa']=new Array();
  69.  
  70.  
  71.  
  72.  
  73. function checktos(force)
  74. {
  75. if ((force) && document.getElementById('checkboxtos').checked) document.getElementById('checkboxtos').checked = false;
  76. else if ((force) && (!document.getElementById('checkboxtos').checked)) document.getElementById('checkboxtos').checked = true;
  77.  
  78.  
  79. if (document.getElementById('checkboxtos').checked) document.getElementById('checkboxtos_div').className='checkboxOn';
  80. else document.getElementById('checkboxtos_div').className='checkboxOff';
  81. }
  82.  
  83. document.uploadindex=0;
  84. document.uploads= new Array();
  85. document.cancelling=false;
  86. document.starttime=0;
  87. document.uploading=false;
  88.  
  89. function onFileSelect(string)
  90. {
  91. var files = explode("||",string);
  92. var i =0;
  93. while(i < files.length)
  94. {
  95. var fields = explode(";",files[i]);
  96. var id = fields[0];
  97. var filename = decodeURIComponent(fields[1]);
  98. var filesize = fields[2];
  99. addfile(id,filename,filesize);
  100. i=i+1;
  101. }
  102. }
  103.  
  104. function updatemultirecipient(id)
  105. {
  106. var i=0;
  107. while (i < document.uploads.length)
  108. {
  109. if (document.uploads[i]['id'] == id)
  110. {
  111. var j = 0;
  112. var multirecipients = '';
  113. while (j < document.uploads[i]['multicnt'])
  114. {
  115. if (document.getElementById('recipient_'+id+'_'+(j+1))) multirecipients += (document.getElementById('recipient_'+id+'_'+(j+1))).value + ',';
  116. j=j+1;
  117. }
  118. document.uploads[i]['multirecipients'] = multirecipients;
  119. updatefile(i);
  120. }
  121. i=i+1;
  122. }
  123. }
  124.  
  125.  
  126. function storerecipient(email)
  127. {
  128. if ((readcookie('recipienthist') == '') || (readcookie('recipienthist') == 'null') || (readcookie('recipienthist') == null))
  129. {
  130. setcookie('recipienthist',email,87600);
  131. }
  132. else
  133. {
  134. if (!stristr(readcookie('recipienthist'), email))
  135. {
  136. setcookie('recipienthist', readcookie('recipienthist')+ '--' + email,87600);
  137. }
  138. }
  139. }
  140.  
  141.  
  142. function adduprecipient(id)
  143. {
  144. var i =0;
  145. while (i < document.uploads.length)
  146. {
  147. if (document.uploads[i]['id'] == id)
  148. {
  149. document.uploads[i]['multicnt']=document.uploads[i]['multicnt']+1;
  150. var num = document.uploads[i]['multicnt'];
  151. }
  152. i=i+1;
  153. }
  154. var html = '<div class="start_inp_bl2_1">';
  155. html += '<div class="start_inp_bg1"></div>';
  156. html += '<div class="start_inp_bg2"></div>';
  157. html += '<div class="start_inp_bg3">';
  158. html += '<input type="text" value="" name="toemail" onblur="updatemultirecipient(\''+ id +'\');" onfocus="updatemultirecipient(\''+ id +'\');" id="recipient_'+id
  159.  
  160. +'_'+num+'" class="start_input"/>';
  161. html += '</div>';
  162. html += '</div>';
  163. $j('#multirecipients_' + id).append(html);
  164.  
  165.  
  166.  
  167.  
  168.  
  169. }
  170.  
  171.  
  172.  
  173.  
  174.  
  175. function updatefiledetails(name,value,id)
  176. {
  177. var i =0;
  178. while (i < document.uploads.length)
  179. {
  180. if (document.uploads[i]['id'] == id)
  181. {
  182. document.uploads[i][name] = value;
  183. updatefile(i);
  184. }
  185. i=i+1;
  186. }
  187. }
  188.  
  189.  
  190. function updatefile(i)
  191. {
  192. document.getElementById('uploaderswf').updatefile(document.uploads[i]['id'],document.uploads[i]['description'],document.uploads[i]
  193.  
  194. ['fromemail'],document.uploads[i]['toemail'],document.uploads[i]['password'],document.uploads[i]['hotlink'],document.uploads[i]['multirecipients']);
  195. }
  196.  
  197. function hotlinkfile(id)
  198. {
  199. if (document.getElementById('hotlink'+id).checked)
  200. {
  201. document.getElementById('hotlink'+id).className='checkboxOn';
  202. document.getElementById('hotlink_div'+id).className='checkboxOn';
  203. updatefiledetails('hotlink','1',id);
  204.  
  205. }
  206. else
  207. {
  208. document.getElementById('hotlink'+id).className='checkboxOff';
  209. document.getElementById('hotlink_div'+id).className='checkboxOff';
  210. updatefiledetails('hotlink','',id);
  211. }
  212. }
  213.  
  214. function addfile(id,filename,filesize)
  215. {
  216. filename_cut = filename;
  217. var txtlength = measureText(filename,'17');
  218.  
  219. if (txtlength > 560)
  220. {
  221. filename_cut = cuttxt(filename,'560',txtlength) + '..';
  222. }
  223.  
  224.  
  225.  
  226. var html = '<div class="start_file_bl" id="file_' + id + '">'
  227. html += '<div class="start_file_bg1"></div>';
  228. html += '<div class="start_file_bg2">';
  229. html += '<div class="start_file_name"> ' + filename_cut + '</div>';
  230. html += '<div class="start_file_size"> (' + bytesToSize(filesize,1) + ') </div>';
  231. html += '<a href="javascript:file_show(\'file' + id + '\')" class="start_file_show" id="file' + id + '_lnk"></a>';
  232. html += '<div class="start_file_div' + id + '"></div>';
  233. html += '<div class="clear"></div>';
  234. html += '<div class="start_advanced" id="file' + id + '_adv">';
  235. html += '<div class="start_inp_txt"> File description: </div>';
  236. html += '<div class="start_inp_bl">';
  237. html += '<div class="start_inp_bg1"></div>';
  238. html += '<div class="start_inp_bg2"></div>';
  239. html += '<div class="start_inp_bg3">';
  240. html += '<input type="text" value="" onkeyup="updatefiledetails(\'description\',this.value,\''+ id +'\');" class="start_input"/>';
  241. html += '</div>';
  242. html += '</div>';
  243. html += '<div class="start_adv_div">';
  244. html += '<div class="start_blocks">';
  245. html += '<div class="start_details"></div>';
  246. html += '<div class="start_inp_txt"> Your email: </div>';
  247. html += '<div class="start_inp_bl2">';
  248. html += '<div class="start_inp_bg1"></div>';
  249. html += '<div class="start_inp_bg2"></div>';
  250. html += '<div class="start_inp_bg3">';
  251. html += '<input type="text" value="" onkeyup="updatefiledetails(\'fromemail\',this.value,\''+ id +'\');" class="start_input"/>';
  252. html += '</div>';
  253. html += '</div>';
  254. html += '<div class="start_inp_txt"> Recipient\'s email: </div>';
  255. html += '<div class="start_inp_bl2_1">';
  256. html += '<div class="start_inp_bg1"></div>';
  257. html += '<div class="start_inp_bg2"></div>';
  258. html += '<div class="start_inp_bg3">';
  259. html += '<input type="text" value="" name="toemail" onblur="updatefiledetails(\'toemail\',this.value,\''+ id +'\');" onfocus="updatefiledetails(\'toemail
  260.  
  261. \',this.value,\''+ id +'\');" id="autocomplete'+id+'" class="start_input"/>';
  262. html += '</div>';
  263. html += '</div>';
  264. html += '<div id="multirecipients_'+id+'"></div>';
  265. html += '<a href="?c=premium" target="_blank" class="start_add_recipient"></a>';
  266. html += '<div class="start_premium_only"></div>';
  267. html += '<div class="clear"></div>';
  268. html += '<div class="start_security_bl">';
  269. html += '<div class="start_file_security"></div>';
  270. html += '<div class="clear"></div>';
  271. html += '<div class="start_inp_txt"> Add link password (optional): </div>';
  272. html += '<div class="start_inp_bl3">';
  273. html += '<div class="start_inp_bg1"></div>';
  274. html += '<div class="start_inp_bg2"></div>';
  275. html += '<div class="start_inp_bg3">';
  276. html += '<input type="password" id="password_'+id+'" value="" onkeyup="updatefiledetails(\'password\',this.value,\''+ id +'\');" class="start_input"/>';
  277. html += '</div>';
  278. html += '</div>';
  279. html += '</div>';
  280. html += '</div>';
  281. html += '<div class="start_blocks2">';
  282. html += '<div class="start_extras"></div>';
  283. html += '<div class="start_extras_http_bl"> <a href="?c=premium" class="start_http_butt" target="_blank"></a>';
  284. html += '<div class="start_premium_only"></div>';
  285. html += '<div class="clear"></div>';
  286. html += '</div>';
  287. html += '<div class="start_extras_small_txt1"> Fetch HTTP or FTP links directly to Megaupload. This very convenient feature is for premium users only, you
  288.  
  289. can purchase your premium membership <a href="?c=premium" style="font-size:11px;" target="_blank">here</a>. </div>';
  290. html += '<div id="hotlink_div'+id+'" class="checkboxOff">';
  291. html += '<input type="checkbox" id="hotlink'+id+'" onclick="hotlinkfile(\''+id+'\');" class="checkboxOff">';
  292. html += '</div>';
  293. html += '<div class="start_hotlink_txt_bl">';
  294. html += '<div class="start_inp_txt"> Hotlink this file </div>';
  295. html += '<div class="start_extras_small_txt2"> Everybody can download your file instantly, with premium speed. You need hotlink quota in order to use this
  296.  
  297. feature. Purchase hotlink quota from your <a href="?c=filemanager" target="_blank" style="font-size:11px;">file manager</a>. </div>';
  298. html += '</div>';
  299. html += '<div class="clear"></div>';
  300. html += '</div>';
  301. html += '<div class="clear"></div>';
  302. html += '</div>';
  303. html += '</div>';
  304. html += '</div>';
  305. html += '<div class="start_file_bg3"></div>';
  306. html += '</div>';
  307. html += '<a href="javascript:cancelupload(\'' + id + '\')" class="start_remove" id="file_' + id + '_del"></a>';
  308. html += '<a href="" class="start_complete_lnk" id="completelink_' + id + '" style="display:none;" target="_blank"></a>';
  309.  
  310.  
  311.  
  312. $j('#filesblock').append(html);
  313.  
  314.  
  315. document.getElementById('filesblock_pad').style.display='';
  316.  
  317. document.getElementById('sel_but1').className = 'start_add_more_butt';
  318. document.getElementById('sel_but1_txt').style.display = 'block';
  319. document.getElementById('sel_but1_bg').className = 'start_bott_bl';
  320. document.getElementById('sel_but1_lnk').style.display = 'block';
  321. document.getElementById('filesblock_pad').style.display = 'block';
  322. document.getElementById('checkboxtos_div').style.display = 'block';
  323. document.getElementById('sel_but1_step1_txt').style.display = 'none';
  324. document.getElementById('sel_but2').style.display = 'block';
  325. document.getElementById('uploaderswf').width='182';
  326. document.getElementById('uploaderswf').height='41';
  327. document.uploads[document.uploadindex] = new Array();
  328. document.uploads[document.uploadindex]['id'] = id;
  329. document.uploads[document.uploadindex]['filename'] = filename;
  330. document.uploads[document.uploadindex]['filesize'] = filesize;
  331. document.uploads[document.uploadindex]['deleted'] = 0;
  332. document.uploads[document.uploadindex]['starttime'] = 0;
  333. document.uploads[document.uploadindex]['endtime'] = 0;
  334. document.uploads[document.uploadindex]['bytesloaded'] = 0;
  335. document.uploads[document.uploadindex]['completed'] = 0;
  336.  
  337. document.uploads[document.uploadindex]['description'] = '';
  338. document.uploads[document.uploadindex]['fromemail'] = '';
  339. document.uploads[document.uploadindex]['toemail'] = '';
  340. document.uploads[document.uploadindex]['password'] = '';
  341. document.uploads[document.uploadindex]['hotlink'] = '';
  342. document.uploads[document.uploadindex]['multirecipients'] = '';
  343. document.uploads[document.uploadindex]['multicnt'] = 0;
  344.  
  345. document.uploadindex=document.uploadindex+1;
  346.  
  347. }
  348.  
  349. function cancelupload(id)
  350. {
  351. document.cancelling=true;
  352. document.getElementById('file_' + id).style.display = 'none';
  353. document.getElementById('file_' + id + '_del').style.display = 'none';
  354. document.getElementById('uploaderswf').removefile(id);
  355. deleteupload(id);
  356. }
  357.  
  358. function deleteupload(id)
  359. {
  360. var i =0;
  361. var total=0;
  362. while (i < document.uploads.length)
  363. {
  364. if (document.uploads[i]['id'] == id)
  365. {
  366. document.uploads[i]['deleted']=1;
  367. }
  368. if (document.uploads[i]['deleted'] == 0)
  369. {
  370. total=total+1;
  371. }
  372. i=i+1;
  373. }
  374. if (total == 0)
  375. {
  376.  
  377. document.getElementById('sel_but1').className = 'start_select_butt';
  378.  
  379.  
  380.  
  381.  
  382. document.getElementById('sel_but1_txt').style.display = 'none';
  383. document.getElementById('sel_but1_bg').className = '';
  384. document.getElementById('sel_but1_lnk').style.display = 'none';
  385. document.getElementById('filesblock_pad').style.display = 'none';
  386. document.getElementById('checkboxtos_div').style.display = 'none';
  387. document.getElementById('sel_but1_step1_txt').style.display = 'block';
  388. document.getElementById('sel_but2').style.display = 'none';
  389.  
  390. document.getElementById('shadow3div').className = 'main_shadow3 download';
  391. document.getElementById('startbutshadow').style.display='';
  392.  
  393. document.getElementById('uploaderswf').width='342';
  394. document.getElementById('uploaderswf').height='62';
  395. document.uploading=false;
  396. }
  397. document.cancelling=false;
  398. }
  399.  
  400. function startupload()
  401. {
  402.  
  403. var inputels = document.getElementsByTagName('input');
  404. var i = 0;
  405. while (i < inputels.length)
  406. {
  407. if ((inputels[i].name == 'toemail') && (!checkMail(inputels[i].value)))
  408. {
  409. storerecipient(inputels[i].value);
  410. }
  411. i=i+1;
  412. }
  413.  
  414.  
  415. if(document.getElementById('checkboxtos').checked)
  416. {
  417. var i =0;
  418. while (i < document.uploads.length)
  419. {
  420. if (document.uploads[i]['deleted'] == 0)
  421. {
  422. var html = '<div class="start_file_bar1">';
  423. html += '<div class="start_file_bar_bl">';
  424. html += '<div class="start_file_bar" style="width:0%" id="progress_'+document.uploads[i]['id']+'"></div>';
  425. html += '</div>';
  426. html += '<div class="start_file_info_bl">';
  427. html += '<div class="start_file_name"> ' + document.uploads[i]['filename'] + ' </div>';
  428. html += '<div class="start_file_size"> ' + bytesToSize(document.uploads[i]['filesize'],1) + ' </div>';
  429. html += '<div class="start_file_percent" id=\"perc_'+document.uploads[i]['id']+'\"> queued </div>';
  430. html += '</div>';
  431. html += '</div>';
  432. document.getElementById('file_' + document.uploads[i]['id']).innerHTML = html;
  433. }
  434. i=i+1;
  435. }
  436. document.getElementById('uploaderswf').startupload();
  437. document.getElementById('sel_but1_txt').style.display = 'none';
  438. document.getElementById('sel_but1_lnk').style.display = 'none';
  439. document.getElementById('sel_but2').style.display = 'none';
  440. document.getElementById('checkboxtos_div').style.display = 'none';
  441. document.getElementById('progress_div').style.display = '';
  442.  
  443.  
  444. document.getElementById('sel_but1').className = 'start_hide_but';
  445.  
  446.  
  447.  
  448. document.getElementById('sel_but1').width='1px';
  449. document.getElementById('sel_but1').height='1px';
  450. document.getElementById('uploaderswf').width='5';
  451. document.getElementById('uploaderswf').height='5';
  452. document.getElementById('shadow3div').className = 'main_shadow3';
  453. document.getElementById('startbutshadow').style.display='none';
  454. document.uploading=true;
  455. document.starttime=new Date().getTime();
  456. updateprogress();
  457. }
  458. else
  459. {
  460. showNotify('You have to agree to our Terms of Service.');
  461.  
  462. }
  463. }
  464.  
  465. function onUploadStart(id)
  466. {
  467. document.cancelling=false;
  468. document.getElementById('perc_' + id).innerHTML = 'Starting';
  469. setfiletime(id,'starttime');
  470. }
  471.  
  472. function setfiletime(id,timetype)
  473. {
  474. var i =0;
  475. while (i < document.uploads.length)
  476. {
  477. if (document.uploads[i]['id'] == id)
  478. {
  479. document.uploads[i][timetype] = new Date().getTime();
  480. }
  481. i=i+1;
  482. }
  483. }
  484.  
  485. function setbytesloaded(id,bytesloaded)
  486. {
  487. var i =0;
  488. while (i < document.uploads.length)
  489. {
  490. if (document.uploads[i]['id'] == id)
  491. {
  492. document.uploads[i]['bytesloaded'] = bytesloaded;
  493. }
  494. i=i+1;
  495. }
  496. }
  497.  
  498. function onUploadSuccess(id, url)
  499. {
  500. var i =0;
  501. var pending =0;
  502. while (i < document.uploads.length)
  503. {
  504. if (document.uploads[i]['id'] == id)
  505. {
  506. var filename = document.uploads[i]['filename'];
  507. var filesize = document.uploads[i]['filesize'];
  508. document.uploads[i]['completed'] = 1;
  509. }
  510. if ((document.uploads[i]['deleted'] == 0) && (document.uploads[i]['completed'] == 0)) pending = pending+1;
  511. i=i+1;
  512. }
  513. document.getElementById('completelink_' + id).style.display = '';
  514. document.getElementById('completelink_' + id).href=url;
  515. document.getElementById('file_' + id + '_del').style.display = 'none';
  516.  
  517. filename_cut = filename;
  518. var txtlength = measureText(filename,'17');
  519. if (txtlength > 560)
  520. {
  521. filename_cut = cuttxt(filename,'560',txtlength) + '..';
  522. }
  523.  
  524. var url2 = url.replace("http://","");
  525. var html = '<div class="start_file_bar1 complete">';
  526. html += '<div class="start_file_bar_bl">';
  527. html += '<div class="start_file_bar" style="width:0%"></div>';
  528. html += '</div>';
  529. html += '<div class="start_file_info_bl">';
  530. html += '<div class="start_file_name"> ' + filename_cut + ' </div>';
  531. html += '<div class="start_file_size"> ' + bytesToSize(filesize,1) + ' </div>';
  532. html += '<a href="'+ url +'" class="start_file_percent_lnk" target="_blank"> '+ url2 +' </a> </div>';
  533. html += '</div>';
  534. document.getElementById('file_' + id).innerHTML = html;
  535. }
  536.  
  537. function onError(id)
  538. {
  539. // alert('Error: ' + id);
  540. }
  541.  
  542. function onUploadProgress(fileid, bytesloaded, bytestotal)
  543. {
  544. if (!document.cancelling)
  545. {
  546. var perc = Math.round(bytesloaded/bytestotal*100);
  547. document.getElementById('progress_' + fileid).style.width = perc + '%';
  548. document.getElementById('perc_' + fileid).innerHTML = perc + '%';
  549. if (bytesloaded < bytestotal)
  550. {
  551. setfiletime(fileid,'endtime');
  552. setbytesloaded(fileid,bytesloaded);
  553. }
  554. }
  555. }
  556.  
  557. function updateprogress()
  558. {
  559. var i =0;
  560. var t =0;
  561. var b =0;
  562. var tb =0;
  563. var pending =0;
  564. var ucompleted=0;
  565. while (i < document.uploads.length)
  566. {
  567. if (document.uploads[i]['deleted'] == 0)
  568. {
  569. if (document.uploads[i]['bytesloaded'] > 0)
  570. {
  571. t = t + document.uploads[i]['endtime']-document.uploads[i]['starttime'];
  572. b = b + parseInt(document.uploads[i]['bytesloaded']);
  573. }
  574. if (document.uploads[i]['completed'] == 0) pending = pending+1;
  575. else ucompleted = ucompleted+1;
  576. tb = tb + parseInt(document.uploads[i]['filesize']);
  577. }
  578. i=i+1;
  579. }
  580. if (t > 1500)
  581. {
  582. var bps = Math.round(b/t*1000);
  583. var pps = explode(" ",bytesToSize(bps,1));
  584. if (pps[1] == 'KB') pps[1] = ' KB/s';
  585. else if (pps[1] == 'MB') pps[1] = ' MB/s';
  586. else if (pps[1] == 'B') pps[1] = ' B/s';
  587. document.getElementById('progress_num').innerHTML = pps[0];
  588. document.getElementById('progress_txt').innerHTML = pps[1];
  589. var ests = tb / b;
  590. ests = Math.round((ests*t)-t);
  591. ests = ests + (pending*3500);
  592. document.getElementById('progress_timers').innerHTML = secondsToTime(Math.round(ests/1000)) + '<br />' + secondsToTime(Math.round((new Date().getTime()-
  593.  
  594. document.starttime)/1000));
  595. }
  596. if ((pending == 0) && (ucompleted == 0))
  597. {
  598. document.getElementById('progress_div').style.display='none';
  599. }
  600. else if (pending == 0)
  601. {
  602. document.getElementById('progress_timers').innerHTML = '00:00:00<br />' + secondsToTime(Math.round((new Date().getTime()-document.starttime)/1000));
  603. document.getElementById('uploadcomplete').style.display='';
  604. document.getElementById('progress_div').style.display='none';
  605. }
  606. else
  607. {
  608. setTimeout("updateprogress()",990);
  609. }
  610. }
  611.  
  612.  
  613. function openvideo(id)
  614. {
  615. document.getElementById('carouselplayerswf').width = '975';
  616. document.getElementById('carouselplayerswf').height = '568';
  617. document.getElementById('carousel_player_div').style.display='';
  618. posPlayer();
  619. // document.getElementById('fadeout3').style.display='';
  620. document.getElementById('flashclosebtn').style.display='';
  621. document.playerwindow=true;
  622. document.getElementById('carouselplayerswf').openvideo(id);
  623.  
  624. document.getElementById('carouselswf').width='1';
  625. document.getElementById('carouselswf').height='1';
  626. }
  627.  
  628.  
  629. function posPlayer()
  630. {
  631. var popup = document.getElementById ('carousel_player_div');
  632. var left = Math.round((getWidth()-popup.clientWidth)/2);
  633.  
  634.  
  635.  
  636.  
  637. document.getElementById('carousel_player_div').style.left = (left) + 'px';
  638. document.getElementById('carousel_player_div').style.top = '129px';
  639. }
  640.  
  641.  
  642. function closevideo()
  643. {
  644. document.getElementById('carouselswf').width='975';
  645. document.getElementById('carouselswf').height='280';
  646. document.getElementById('carouselplayerswf').closeplayer();
  647. document.getElementById('carouselplayerswf').width = '1';
  648. document.getElementById('carouselplayerswf').height = '1';
  649. document.getElementById('carousel_player_div').style.left = '-10px';
  650. document.getElementById('flashclosebtn').style.display='none';
  651.  
  652.  
  653. document.getElementById('fadeout3').style.display='none';
  654. document.playerwindow=false;
  655.  
  656.  
  657. }
  658.  
  659.  
  660.  
  661.  
  662. function loadcarousel()
  663. {
  664.  
  665. var carouselimages = new Array();
  666.  
  667. carouselimages[1] = newImage('http://wwwstatic.megaupload.com/muimg/profiles/_0000_kim_kardashian.png');
  668. carouselimages[2] = newImage('http://wwwstatic.megaupload.com/muimg/profiles/_0002_will_i_am.png');
  669. carouselimages[3] = newImage('http://wwwstatic.megaupload.com/muimg/profiles/MegaBadge.png');
  670. carouselimages[4] = newImage('http://wwwstatic.megaupload.com/muimg/profiles/_0018_swizz_beatz.png');
  671. carouselimages[5] = newImage('http://wwwstatic.megaupload.com/muimg/profiles/_0003_alicia_keys.png');
  672. carouselimages[6] = newImage('http://wwwstatic.megaupload.com/muimg/profiles/_0004_snoop_dog.png');
  673. carouselimages[7] = newImage('http://wwwstatic.megaupload.com/muimg/profiles/_0005_chris_brown.png');
  674. carouselimages[8] = newImage('http://wwwstatic.megaupload.com/muimg/profiles/_0006_kanye_west.png');
  675. carouselimages[9] = newImage('http://wwwstatic.megaupload.com/muimg/profiles/_0007_lil_john.png');
  676. carouselimages[10] = newImage('http://wwwstatic.megaupload.com/muimg/profiles/_0008_jamie_fox.png');
  677. carouselimages[11] = newImage('http://wwwstatic.megaupload.com/muimg/profiles/_0009_serena_williams.png');
  678. carouselimages[12] = newImage('http://wwwstatic.megaupload.com/muimg/profiles/_0010_russel_simmons.png');
  679. carouselimages[13] = newImage('http://wwwstatic.megaupload.com/muimg/profiles/_0011_bret_rattner.png');
  680. carouselimages[14] = newImage('http://wwwstatic.megaupload.com/muimg/profiles/_0012_floyd_mayweather.png');
  681. carouselimages[15] = newImage('http://wwwstatic.megaupload.com/muimg/profiles/_0013_estelle.png');
  682. carouselimages[16] = newImage('http://wwwstatic.megaupload.com/muimg/profiles/_0014_carmello_anthony.png');
  683. carouselimages[17] = newImage('http://wwwstatic.megaupload.com/muimg/profiles/_0015_ciara.png');
  684. carouselimages[18] = newImage('http://wwwstatic.megaupload.com/muimg/profiles/_0016_the_game.png');
  685. carouselimages[19] = newImage('http://wwwstatic.megaupload.com/muimg/profiles/_0017_mary_j_blige.png');
  686. carouselimages[20] = newImage('http://wwwstatic.megaupload.com/muimg/profiles/_0001_p_diddy.png');
  687. carouselimages[21] = newImage('http://wwwstatic.megaupload.com/muimg/profiles/_0019_kim_dotcom.png');
  688. carouselimages[22] = newImage('http://wwwstatic.megaupload.com/muimg/profiles/_0020_mini_kim.png');
  689.  
  690.  
  691.  
  692.  
  693.  
  694.  
  695.  
  696. var flashvars = {};
  697. flashvars.celebs = "1;http%3A%2F%2Fwwwstatic.megaupload.com%2Fmuimg%2Fprofiles%2F_0000_kim_kardashian.png;Kim%20Kardashian;http%3A%2F%2Fcdn.megaupload.com
  698.  
  699. %2FKim_Kardashian_HD.mov_high.flv;0;0;700;330;BPYMDXEQ;c19edba476857f452b765ccbbe2e100b2|2;http%3A%2F%2Fwwwstatic.megaupload.com%2Fmuimg%2Fprofiles
  700.  
  701. %2F_0002_will_i_am.png;Will.i.am;http%3A%2F%2Fcdn.megaupload.com%2Fwill_i_am_HD.mov_high.flv;0;0;700;330;6LS72JAP;9f1b8a13f1efa36ee6040c9899a0f8442|3;http%3A%2F
  702.  
  703. %2Fwwwstatic.megaupload.com%2Fmuimg%2Fprofiles%2FMegaBadge.png;Mega%20Song;http%3A%2F%2Fcdn.megaupload.com
  704.  
  705. %2FMegaThemeWide.flv;1;0;700;330;60JJY6P2;424213acfb11d5d8818b087a2c2c9add2|4;http%3A%2F%2Fwwwstatic.megaupload.com%2Fmuimg%2Fprofiles%2F_0018_swizz_beatz.png;Swizz
  706.  
  707. %20Beatz;http%3A%2F%2Fcdn.megaupload.com%2FSwizzbeats.mp4_high.flv;0;0;700;330;MOD8V34G;a36f2d8617b0d6b90a2f1531f2af5c0d2|5;http%3A%2F%2Fwwwstatic.megaupload.com
  708.  
  709. %2Fmuimg%2Fprofiles%2F_0003_alicia_keys.png;Alicia%20Keys;http%3A%2F%2Fcdn.megaupload.com
  710.  
  711. %2FAlicia_Keys_HD.mov_high.flv;0;0;700;330;L35WPYAU;f146d927b34c4a714f3ae81a27bdb8d22|6;http%3A%2F%2Fwwwstatic.megaupload.com%2Fmuimg%2Fprofiles
  712.  
  713. %2F_0004_snoop_dog.png;Snoop%20Dogg;http%3A%2F%2Fcdn.megaupload.com%2FSnoop_HD.mov_high.flv;0;0;700;330;85XYOU52;665a534afc4cbc9272e5d61d901853db2|7;http%3A%2F
  714.  
  715. %2Fwwwstatic.megaupload.com%2Fmuimg%2Fprofiles%2F_0005_chris_brown.png;Chris%20Brown;http%3A%2F%2Fcdn.megaupload.com
  716.  
  717. %2FChris_Brown_HD.mov_high.flv;0;0;700;330;CRKC3741;d14396c55a90a795e17a14f70a5900ff2|8;http%3A%2F%2Fwwwstatic.megaupload.com%2Fmuimg%2Fprofiles
  718.  
  719. %2F_0006_kanye_west.png;Kanye%20West;http%3A%2F%2Fcdn.megaupload.com%2FKanye_West_HD.mov_high.flv;0;0;700;330;CB6GSHCN;df07594a4425d821d968b96a461258b02|9;http%3A%2F
  720.  
  721. %2Fwwwstatic.megaupload.com%2Fmuimg%2Fprofiles%2F_0007_lil_john.png;Lil%20Jon;http%3A%2F%2Fcdn.megaupload.com
  722.  
  723. %2FLil_John_HD.mov_high.flv;0;0;700;330;OHWDK9TJ;b52bd7f2acd08954ff2ef8eeff115ab22|10;http%3A%2F%2Fwwwstatic.megaupload.com%2Fmuimg%2Fprofiles
  724.  
  725. %2F_0008_jamie_fox.png;Jamie%20Foxx;http%3A%2F%2Fcdn.megaupload.com%2FJamie_Foxx_HD.mov_high.flv;0;0;700;330;0TNY4GVQ;618242a95e69921d78e58b0fc3d6dc6a2|11;http%3A%2F
  726.  
  727. %2Fwwwstatic.megaupload.com%2Fmuimg%2Fprofiles%2F_0009_serena_williams.png;Serena%20Williams;http%3A%2F%2Fcdn.megaupload.com
  728.  
  729. %2FSerena_Williams_HD.mov_high.flv;0;0;700;330;U6XHWMXM;c8c240d8756fbb894a9dd2e253b924742|12;http%3A%2F%2Fwwwstatic.megaupload.com%2Fmuimg%2Fprofiles
  730.  
  731. %2F_0010_russel_simmons.png;Russell%20Simmons;http%3A%2F%2Fcdn.megaupload.com
  732.  
  733. %2FRussell_Simmons_HD.mov_high.flv;0;0;700;330;TWR1YR7W;e7c6fcdbec03d68c576970dfdc6886242|13;http%3A%2F%2Fwwwstatic.megaupload.com%2Fmuimg%2Fprofiles
  734.  
  735. %2F_0011_bret_rattner.png;Brett%20Ratner;http%3A%2F%2Fcdn.megaupload.com%2FBrett_Ratner_HD.mov_high.flv;0;0;700;330;7OWSK9WL;11efa32b7f36073048d2da4809818eb22|14;http
  736.  
  737. %3A%2F%2Fwwwstatic.megaupload.com%2Fmuimg%2Fprofiles%2F_0012_floyd_mayweather.png;Floyd%20Mayweather;http%3A%2F%2Fcdn.megaupload.com
  738.  
  739. %2FFloyd_Mayweather_HD.mov_high.flv;0;0;700;330;MEYY0A64;aafe6d136981d177e3e2ecb5c4ccaa532|15;http%3A%2F%2Fwwwstatic.megaupload.com%2Fmuimg%2Fprofiles
  740.  
  741. %2F_0013_estelle.png;Estelle;http%3A%2F%2Fcdn.megaupload.com%2FEstelle_HD.mov_high.flv;0;0;700;330;426NKSRS;85ef0f810331c9fc90c3466101f5a9292|16;http%3A%2F
  742.  
  743. %2Fwwwstatic.megaupload.com%2Fmuimg%2Fprofiles%2F_0014_carmello_anthony.png;Carmelo%20Anthony;http%3A%2F%2Fcdn.megaupload.com
  744.  
  745. %2FCarmelo_Anthony_HD.mov_high.flv;0;0;700;330;NBTCRR3O;d35e5bf97125c12777be9577ec5453e42|17;http%3A%2F%2Fwwwstatic.megaupload.com%2Fmuimg%2Fprofiles
  746.  
  747. %2F_0015_ciara.png;Ciara;http%3A%2F%2Fcdn.megaupload.com%2FCiara_HD.mov_high.flv;0;0;700;330;6ETDP7A3;24fcd13c5ce2004f1226083b5ae038f62|18;http%3A%2F
  748.  
  749. %2Fwwwstatic.megaupload.com%2Fmuimg%2Fprofiles%2F_0016_the_game.png;The%20Game;http%3A%2F%2Fcdn.megaupload.com
  750.  
  751. %2FGame_HD.mov_high.flv;0;0;700;330;JI6F3FF5;ba41815c7ec831953e8f0f94c9b31b182|19;http%3A%2F%2Fwwwstatic.megaupload.com%2Fmuimg%2Fprofiles
  752.  
  753. %2F_0017_mary_j_blige.png;Mary%20J%20Blige;http%3A%2F%2Fcdn.megaupload.com%2Fmaryj.mov.mp4_high.flv;0;0;700;330;EC4HWJ1C;81a31fe497617e192ece53296c0868772|20;http%3A
  754.  
  755. %2F%2Fwwwstatic.megaupload.com%2Fmuimg%2Fprofiles%2F_0001_p_diddy.png;P%20Diddy;http%3A%2F%2Fcdn.megaupload.com
  756.  
  757. %2FDiddy_HD.mov_high.flv;0;0;700;330;CUY8CBYV;3eeefe9a84be3dfb386841d74161b1712|21;http%3A%2F%2Fwwwstatic.megaupload.com%2Fmuimg%2Fprofiles%2F_0019_kim_dotcom.png;Kim
  758.  
  759. %20Dotcom;http%3A%2F%2Fcdn.megaupload.com%2FKimDotcom.flv;0;0;700;330;TKY5290L;c077cd7613543c900639fc7b9ffaa8022|22;http%3A%2F%2Fwwwstatic.megaupload.com%2Fmuimg
  760.  
  761. %2Fprofiles%2F_0020_mini_kim.png;Kim%20Junior;http%3A%2F%2Fcdn.megaupload.com%2FKimmo.flv;0;0;700;420;RMSEB6O5;0a2f5bdcd3fd835ab5466efe5bec2a5c2";
  762. flashvars.image_free = "http://wwwstatic.megaupload.com/muimg/en/free_mem_fl.png";
  763. flashvars.image_free_hover = "http://wwwstatic.megaupload.com/muimg/en/free_mem_fl_hover.png";
  764. flashvars.image_premium = "http://wwwstatic.megaupload.com/muimg/en/prem_mem_fl.png";
  765. flashvars.image_premium_hover = "http://wwwstatic.megaupload.com/muimg/en/prem_mem_fl_hover.png";
  766.  
  767. var params = {};
  768. var attributes = {};
  769. attributes.id = "carouselplayerswf";
  770. params.wmode = "transparent";
  771. params.allowscriptaccess = "always";
  772.  
  773. swfobject.embedSWF("http://wwwstatic.megaupload.com/carousel_player2.swf", "carouselplayerswf_div", "1", "1", "10.2.0", "expressInstall.swf", flashvars,
  774.  
  775. params,attributes);
  776.  
  777.  
  778.  
  779.  
  780.  
  781.  
  782. var flashvars = {};
  783. flashvars.xmlurl = "xml/carousel.php?r=132679738";
  784. flashvars.header = "muimg/en/carousel_txt.png";
  785. var params = {};
  786. var attributes = {};
  787. attributes.id = "carouselswf";
  788. params.wmode = "transparent";
  789. params.allowscriptaccess = "always";
  790.  
  791. swfobject.embedSWF("http://wwwstatic.megaupload.com/carousel.swf", "carouselswf", "975", "280", "10.2.0", "expressInstall.swf", flashvars, params,attributes);
  792.  
  793.  
  794.  
  795.  
  796.  
  797. }
  798.  
  799.  
  800. </script>
  801.  
  802.  
  803. <script type="text/javascript">
  804. var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
  805. document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
  806. </script>
  807. <script type="text/javascript">
  808. try {
  809. var pageTracker = _gat._getTracker("UA-6383685-1");
  810. pageTracker._trackPageview();
  811. } catch(err) {}</script>
  812.  
  813.  
  814. </head>
  815.  
  816. <body onresize="posNotifyReversePayment();" onscroll="posNotifyReversePayment();" onload="loadcarousel();">
  817. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  818. <tr>
  819.  
  820. <td class="top_td_bg">&nbsp;</td>
  821. <td class="top_td_bg"></td>
  822.  
  823. <td class="top_td_bg">&nbsp;</td>
  824. </tr>
  825. <tr>
  826. <td class="left_top"><div class="l_top_bg">
  827. <div class="left_top_bg"></div>
  828. </div>
  829.  
  830. <div class="mid_left_bg1">
  831. <div class="mid_left_bg2"></div>
  832. </div></td>
  833.  
  834. <td class="left_top main_width"><div class="main_top_l">
  835. <div class="main_top_r">
  836. <a href="http://www.megaupload.com" class="logo_lnk"></a>
  837. <div class="lang_pad"> <a id="langSelectionSP" class="lng_en_a" onclick="langSelection.turn()"></a></div>
  838. <div class="top_buttons_pad" ><a href="?c=signup" class="top_reg_butt"></a></div>
  839. <div class="top_buttons_pad" ><a href="?c=login" class="top_log_butt"></a></div>
  840. <script type="text/javascript">
  841. function signout() { document.getElementById('logoutfrm').submit(); }
  842.  
  843. </script>
  844. <FORM method="POST" id="logoutfrm"><input type="hidden" name="logout" value="1"></FORM>
  845. <div class="clear"></div>
  846. </div>
  847. </div>
  848.  
  849. <div class="top_line"></div>
  850. <div class="top_menu_block">
  851. <div class="top_butt1"><a href="?c=signup" class="butt_1"></a></div>
  852. <div class="top_butt2"><a href="?c=premium" class="butt_2"></a></div>
  853. <div class="top_butt3"><a href="?c=top100" class="butt_3"></a></div>
  854.  
  855. <div class="top_butt4"><a href="?c=tools" class="butt_4"></a></div>
  856. <div class="top_butt5"><a href="?c=support" class="butt_5"></a></div>
  857. <div class="top_butt6"><a href="?c=faq" class="butt_6"></a></div>
  858. <div class="clear" ></div>
  859. </div>
  860. <div class="main_bg start">
  861. <h1>
  862. <br /><br /><br /><br /><br /><br />
  863. <font color="red"><center>WE DON'T HAVE ANY DOMAIN NAME FOR NOW</center><br /><br /><br /> <center>ONLY THIS IP ADDRESS (http://109.236.83.66) BEWARE TO THE PISHING SITES!</center></font>
  864. <br /><br />
  865. <br /><br />
  866.  
  867. <center>This is the NEW MEGAUPLOAD SITE! we are working to be back full again</center>
  868. <br /><br /><br />
  869. <center>Bookmark the site and share the new address in facebook and twitter!</center><br /><br /><br /><br /><br /><br />
  870.  
  871. <center>
  872. <a name="fb_share" type="button_count" href="http://www.facebook.com/sharer.php" share_url="http://109.236.83.66">Share</a><script
  873.  
  874. src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script></center>
  875. <br /><br /><br /><center><a href="http://twitter.com/share" class="twitter-share-button" data-count="vertical">Tweet</a><script type="text/javascript"
  876.  
  877. src="http://platform.twitter.com/widgets.js"></script></center><br /><br /><br />
  878. <center>
  879. <IFRAME FRAMEBORDER=0 MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=NO WIDTH=728 HEIGHT=90 SRC="http://adserving.cpxinteractive.com/st?ad_type=iframe&ad_size=728x90&section=2731388"></IFRAME></center>
  880. <br /><br />
  881.  
  882. </h2>
  883.  
  884. </div>
  885. <div class="main_shadow3 download" id="shadow3div"></div>
  886. <div class="main_start_separator"></div>
  887. <div class="main_shadow1"></div>
  888. <div class="main_shadow2 start">
  889. <div class="start_flash_block">
  890. <div class="start_flash">
  891.  
  892. <!--<img src="start_top.png" width="975" height="7" border="0" /><img src="start.jpg" alt="123" width="975" height="273" border="0" />-->
  893.  
  894.  
  895. <div id="carouselswf_div"></div>
  896.  
  897. <div id="carouselswf"></div>
  898. <script type="text/javascript">
  899.  
  900. </script>
  901.  
  902. </div>
  903. </div>
  904. <div class="start_carousel_mid_bg" id="c1"> <a href="javascript:carousel('c1')" class="start_car_nw_lnk"></a> </div>
  905. <div id="c1_block" class="start_carousel_block_closed"><a href="javascript:carousel('c1')" class="close_carousel"></a>
  906.  
  907. <div>
  908.  
  909. <div class="st_nw_block1_bg">
  910. <div class="st_nw_block_txt"> </div>
  911. </div>
  912. <div class="st_nw_block2_bg">
  913. <div class="st_nw_block_txt"> </div>
  914. </div>
  915.  
  916. <div class="st_nw_block3_bg">
  917. <div class="st_nw_block_txt"> </div>
  918.  
  919. </div>
  920. <div class="st_nw_block4_bg">
  921. <div class="st_nw_block_txt"> </div>
  922. </div>
  923. <div class="st_nw_block5_bg">
  924.  
  925. <div class="st_nw_block_txt"> </div>
  926. </div>
  927. <div class="st_nw_block6_bg">
  928.  
  929. <div class="st_nw_block_txt"> </div>
  930. </div>
  931. <div class="st_nw_block7_bg">
  932. <div class="st_nw_block_txt"> <a href="http://static.megaupload.com/megamanager.exe" class="st_nw_download"></a>
  933.  
  934. <div class="clear"></div>
  935. </div>
  936. </div>
  937. <div class="st_nw_block8_bg">
  938.  
  939. <div class="st_nw_block_txt"> <a href="?c=premium" class="st_nw_premium"></a> <a href="?c=signup" class="st_nw_free"></a>
  940. <div class="clear"></div>
  941. </div>
  942.  
  943. </div>
  944. <div class="st_nw_block9_bg">
  945. <div class="st_nw_block_txt"> </div>
  946. </div>
  947.  
  948. <div class="st_nw_block10_bg">
  949. <div class="st_nw_block_txt"> <a href="?c=premium" class="st_nw_premium_lnk"></a> <a href="?c=signup" class="st_nw_free_lnk"></a>
  950. <div class="clear"></div>
  951.  
  952. </div>
  953. </div>
  954. </div>
  955. </div>
  956. </div>
  957.  
  958. <div class="faq_bott_shadow">
  959. <div class="faq_bott_shadow_bg"></div>
  960. </div>
  961.  
  962. </div>
  963. <div class="bottom_bl">
  964. <div class="foot_bg1"><a href="http://www.megaworld.com" target="_blank" class="mw_link"></a></div>
  965. <div class="bott_butt1"><a href="http://www.megaclick.com/index.php?c=site_profile&site_id=1" class="f_butt_1" target="_blank"></a></div>
  966. <div class="bott_butt2"><a href="?c=abuse" class="f_butt_2 "></a></div>
  967. <div class="bott_butt3"><a href="?c=contact" class="f_butt_3 "></a></div>
  968. <div class="bott_butt4"><a href="?c=privacy" class="f_butt_4 "></a></div>
  969.  
  970. <div class="bott_butt5"><a href="?c=terms" class="f_butt_5 "></a></div>
  971. <div class="bott_butt6"><a href="?c=about" class="f_butt_6 "></a></div>
  972.  
  973.  
  974.  
  975. <div class="clear"></div>
  976. </div>
  977. <div class="powered_bl"></div>
  978. <a href="?c=pressrelease" class="join" style="height:45px; width:325px; float:right; background-image:url(../muimg/join.png); background-position:right 12px;
  979.  
  980. background-repeat:no-repeat; display:block; float:left;"></a>
  981.  
  982.  
  983.  
  984. <div class="clear"></div>
  985. </div></td>
  986.  
  987. <td class="right_top" ><div class="r_top_bg">
  988. <div class="right_top_bg"></div>
  989.  
  990. </div>
  991. <div class="mid_right_bg1">
  992. <div class="mid_right_bg2"></div>
  993. </div></td>
  994. </tr>
  995. </table>
  996.  
  997.  
  998.  
  999.  
  1000. <div id="carousel_player_div" class="carousel_player">
  1001. <div id="carouselplayerswf_div"></div>
  1002.  
  1003. <a href="javascript:closevideo();" class="close_flash_nw" style="left:955px; top:-16px; display:none;" id="flashclosebtn"></a>
  1004. </div>
  1005.  
  1006.  
  1007. <div id="fadeout3" class="grayblock" style="display:none;"></div>
  1008.  
  1009.  
  1010.  
  1011.  
  1012.  
  1013. <div class="fm_popup" style="width:644px;" id="popup_notify">
  1014. <div class="fm_popup_bg1"> </div>
  1015.  
  1016. <div class="fm_popup_bg2">
  1017.  
  1018. <div> <a href="javascript:closeNotify();" class="fm_import_close_but"></a> </div>
  1019. </div>
  1020. <div class="fm_popup_bg3">
  1021. <div class="fm_popup_message_txt"> </div>
  1022. </div>
  1023. <div class="clear"></div>
  1024.  
  1025. <div class="fm_popup_bg4">
  1026.  
  1027. <div class="fm_popup_bg5">
  1028. <div class="fm_popup_main1">
  1029. <div class="fm_popup_del_txt" id="notify_txt" style="line-height:22px;"></div>
  1030. <div class="fm_mess_butt_bl"> <a href="javascript:closeNotify();" class="fm_message_ok"></a> </div>
  1031. </div>
  1032. </div>
  1033. </div>
  1034.  
  1035. <div class="fm_popup_bg6"> </div>
  1036. <div class="fm_popup_bg7"> </div>
  1037. <div class="fm_popup_bg8"> </div>
  1038. </div>
  1039. <div id="fadeout" class="grayblock" style="display:none;" onclick="closeNotify();"></div>
  1040.  
  1041.  
  1042.  
  1043.  
  1044.  
  1045. <div class="fm_popup" style="width:644px;" id="popup_payment">
  1046.  
  1047. <div class="fm_popup_bg1"> </div>
  1048. <div class="fm_popup_bg2">
  1049. <div> <a href="javascript:closePayment();" class="fm_import_close_but"></a> </div>
  1050. </div>
  1051. <div class="fm_popup_bg3">
  1052. <div class="fm_popup_message_txt"> </div>
  1053.  
  1054. </div>
  1055.  
  1056. <div class="clear"></div>
  1057. <div class="fm_popup_bg4">
  1058. <div class="fm_popup_bg5">
  1059. <div class="fm_popup_main1">
  1060. <div class="fm_popup_del_txt" id="payment_txt" style="line-height:22px;"></div>
  1061. <div class="fm_mess_butt_bl"> <a href="javascript:closePayment();" class="fm_message_ok"></a> </div>
  1062.  
  1063. </div>
  1064. </div>
  1065.  
  1066. </div>
  1067. <div class="fm_popup_bg6"> </div>
  1068. <div class="fm_popup_bg7"> </div>
  1069. <div class="fm_popup_bg8"> </div>
  1070. </div>
  1071.  
  1072. <div id="fadeout4" class="grayblock" style="display:none;" onclick="closePayment();"></div>
  1073.  
  1074.  
  1075.  
  1076.  
  1077. <script type="text/javascript">
  1078. window.onscroll = posNotifyReversePayment;
  1079. </script>
  1080.  
  1081.  
  1082.  
  1083.  
  1084.  
  1085.  
  1086.  
  1087. <script type="text/javascript" language="javascript1.2"><!--
  1088. EXs=screen;EXw=EXs.width;navigator.appName!="Netscape"?
  1089. EXb=EXs.colorDepth:EXb=EXs.pixelDepth;//-->
  1090. </script><script type="text/javascript"><!--
  1091. navigator.javaEnabled()==1?EXjv="y":EXjv="n";
  1092. EXd=document;EXw?"":EXw="na";EXb?"":EXb="na";
  1093. EXd.write("<img src=\"http://nht-2.extreme-dm.com",
  1094. "/n2.g?login=kimble&amp;pid=main&amp;",
  1095. "jv="+EXjv+"&amp;j=y&amp;srw="+EXw+"&amp;srb="+EXb+"&amp;",
  1096. "l="+escape(EXd.referrer)+"\" height=1 width=1>");//-->
  1097. </script><noscript><img height="1" width="1" alt=""
  1098. src="http://nht-2.extreme-dm.com/n2.g?login=kimble&amp;pid=main&amp;j=n&amp;jv=n"/>
  1099.  
  1100. </noscript>
  1101.  
  1102. <script type="text/javascript">
  1103. function scamg(){
  1104. if(document.images){
  1105. document.images['mvmv'].src = 'http://whos.amung.us/cwidget/megavideoliv/000000ffffff.png?' +
  1106. Date.parse(new Date().toString());
  1107. } setTimeout(scamg,600000);
  1108. }
  1109. </script>
  1110.  
  1111. <div style="visibility:hidden"><img name="mvmv" src="http://whos.amung.us/cwidget/megavideoliv/000000ffffff.png" ></div>
  1112.  
  1113.  
  1114. </body>
  1115. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement