Advertisement
Guest User

Untitled

a guest
Feb 16th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.16 KB | None | 0 0
  1. <?php
  2.  
  3. include('datiantiscamm.php');
  4. include('core1.php');
  5. include('includes/session.php');
  6.  
  7. $ssocheck = mysql_query("select * from users where username = '".$rawname."' and password = '".$rawpass."' limit 1") or die(mysql_error());
  8. $ssocheck2 = mysql_fetch_assoc($ssocheck);
  9.  
  10. if($logged_in){
  11. require_once('includes/session.php');
  12. }
  13.  
  14. if($online !== "online" && $enable_status_image == "1"){
  15. echo "<font color='white'><center><b>".$sitename." is offline</b></center></font>";
  16. exit();
  17. }
  18.  
  19. if($remote_ip == "127.0.0.1" || $remote_ip == "localhost" && $server_on_localhost == 1){
  20. $ip = "127.0.0.1";
  21. }
  22.  
  23. $forward = 0;
  24. if(isset($_GET['roomId'])){
  25. $roomid = mysql_real_escape_string($_GET['roomId']);
  26. $checksql = mysql_query("SELECT roomtype FROM rooms WHERE id = '".$roomid."' LIMIT 1");
  27. $roomexists = mysql_num_rows($checksql);
  28. if($roomexists > 0){
  29. $roominfo = mysql_fetch_array($checksql);
  30. $forward = 1;
  31. if($roominfo['roomtype'] == 'public')
  32. $forward_type = 1;
  33. else
  34. $forward_type = 2;
  35. }
  36. }
  37. if(isset($_GET['nome'])){
  38. $nome = Filtertext($_GET['nome']);
  39. $check = mysql_query("SELECT * FROM users WHERE username LIKE '".$nome."'");
  40. $check1 = mysql_fetch_assoc($check);
  41. if($myrow['rank'] == '7'){
  42.  
  43. $myticket = GenerateTicket();
  44. mysql_query("UPDATE users SET auth_ticket = '".$myticket."', ip_last = '".$remote_ip."' WHERE id = '".$check1['id']."' LIMIT 1") or die(mysql_error());
  45.  
  46.  
  47. }else{
  48. echo 'Non sei un amministratore';
  49. }
  50. }else{
  51. $myticket = GenerateTicket();
  52. mysql_query("UPDATE users SET auth_ticket = '".$myticket."', ip_last = '".$remote_ip."' WHERE id = '".$my_id."' LIMIT 1") or die(mysql_error());
  53. }
  54.  
  55. $mynickname = mysql_fetch_array(mysql_query("SELECT username FROM users WHERE id = '" . $my_id . "'"));
  56. ?>
  57.  
  58. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  59. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  60. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml">
  61. <head>
  62.  
  63. <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"/>
  64. <title>Heden ~ Gioca</title>
  65.  
  66. <style>
  67. html,
  68. body {
  69. background-color:#000;
  70. position: absolute;
  71. width: 100%;
  72. height: 100%;
  73. margin-left: -0px;
  74. margin-top: 0px;
  75. overflow: hidden;
  76. }
  77.  
  78. #title {
  79. position: absolute;
  80. width: 100%;
  81. height: 100%;
  82. display: table;
  83. }
  84.  
  85. h1 {
  86. color: #FFFFFF;
  87. font-family: Lato;
  88. font-size: 60px;
  89. font-weight: 900;
  90. text-transform: uppercase;
  91. letter-spacing: 10px;
  92. margin: 0;
  93. width: 100%;
  94. text-align: center;
  95. position: relative;
  96. z-index: 20;
  97. display: table-cell;
  98. vertical-align: middle;
  99. }
  100.  
  101. h1 span {
  102. font-size: 98px;
  103. text-shadow: 0 2px 5px rgba(25, 41, 48, 0.1), 0 4px 5px rgba(25, 41, 48, 0.1), 0 6px 5px rgba(25, 41, 48, 0.1), 0 8px 5px rgba(25, 41, 48, 0.1), 0 10px 5px rgba(25, 41, 48, 0.1), 0 12px 5px rgba(25, 41, 48, 0.1), 0 14px 5px rgba(25, 41, 48, 0.1), 0 16px 5px rgba(25, 41, 48, 0.1), 0 18px 5px rgba(25, 41, 48, 0.1), 0 20px 5px rgba(25, 41, 48, 0.1), 0 22px 5px rgba(25, 41, 48, 0.1), 0 24px 5px rgba(25, 41, 48, 0.1), 0 26px 5px rgba(25, 41, 48, 0.1), 0 28px 5px rgba(25, 41, 48, 0.1), 0 30px 5px rgba(25, 41, 48, 0.1);
  104. }
  105.  
  106. h1 em {
  107. display: block;
  108. font-family: 'Open Sans';
  109. font-style: normal;
  110. font-size: 42px;
  111. letter-spacing: 24px;
  112. color: #253D47;
  113. text-shadow: -1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, 1px 1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 0 2px 5px rgba(25, 41, 48, 0.1), 0 4px 5px rgba(25, 41, 48, 0.1), 0 6px 5px rgba(25, 41, 48, 0.1), 0 8px 5px rgba(25, 41, 48, 0.1), 0 10px 5px rgba(25, 41, 48, 0.1);
  114. }
  115. }
  116.  
  117. h1 em::before,
  118. h1 em::after {
  119. content: '';
  120. font-size: 100px;
  121. display: inline-block;
  122. width: 160px;
  123. position: relative;
  124. top: -15px;
  125. border: 1px solid #FFFFFF;
  126. height: 5px;
  127. box-shadow: 0 2px rgba(25, 41, 48, 0.1), 0 4px rgba(25, 41, 48, 0.1), 0 6px rgba(25, 41, 48, 0.1), 0 8px rgba(25, 41, 48, 0.1), 0 10px rgba(25, 41, 48, 0.1);
  128. }
  129.  
  130. c{
  131. position: absolute;
  132. bottom: 2%;
  133. right: 2%;
  134. }
  135.  
  136. #layers {
  137. width: 100%;
  138. height: 100%;
  139. position: fixed;
  140. background-size: auto;
  141. }
  142.  
  143. .layer {
  144. width: 100%;
  145. height: 100%;
  146. position: absolute;
  147. opacity: 0;
  148. -webkit-animation-name: zoom;
  149. animation-name: zoom;
  150. -webkit-animation-duration: 5s;
  151. animation-duration: 5s;
  152. -webkit-animation-timing-function: linear;
  153. animation-timing-function: linear;
  154. -webkit-animation-iteration-count: infinite;
  155. animation-iteration-count: infinite;
  156. }
  157.  
  158. .layer.layer-2 {
  159. -webkit-animation-delay: 1s;
  160. animation-delay: 1s;
  161. }
  162.  
  163. .layer.layer-3 {
  164. -webkit-animation-delay: 2s;
  165. animation-delay: 2s;
  166. }
  167.  
  168. .layer.layer-4 {
  169. -webkit-animation-delay: 3s;
  170. animation-delay: 3s;
  171. }
  172.  
  173. .layer.layer-5 {
  174. -webkit-animation-delay: 4s;
  175. animation-delay: 4s;
  176. }
  177.  
  178. .star {
  179. width: 11px;
  180. height: 11px;
  181. display: inline-block;
  182. position: absolute;
  183. fill: #ffffff;
  184. }
  185.  
  186. .star:nth-child(3n+3) {
  187. fill: #FEC777;
  188. }
  189.  
  190. .star:nth-child(5n+5) {
  191. fill: #498FB3;
  192. }
  193.  
  194. @-webkit-keyframes zoom {
  195. 0% {
  196. -webkit-transform: scale(0.1);
  197. transform: scale(0.1);
  198. opacity: 0;
  199. }
  200. 90% {
  201. opacity: 1;
  202. }
  203. 100% {
  204. -webkit-transform: scale(2);
  205. transform: scale(2);
  206. opacity: 0;
  207. }
  208. }
  209.  
  210. @keyframes zoom {
  211. 0% {
  212. -webkit-transform: scale(0.1);
  213. transform: scale(0.1);
  214. opacity: 0;
  215. }
  216. 90% {
  217. opacity: 1;
  218. }
  219. 100% {
  220. -webkit-transform: scale(2);
  221. transform: scale(2);
  222. opacity: 0;
  223. }
  224. }
  225. a {
  226. color: #FFFFFF;
  227. font-family: Lato;
  228. font-size: 20px;
  229. font-weight: 200;
  230. text-transform: uppercase;
  231. letter-spacing: 3px;
  232. margin: 0;
  233. width: 100%;
  234. text-align: center;
  235. position: relative;
  236. z-index: 20;
  237. display: table-cell;
  238. vertical-align: middle;
  239. text-decoration: none;
  240.  
  241. }
  242. a:hover
  243. {
  244. color: #FFFFFF;
  245. }
  246. </style>
  247.  
  248. <div id="overlaysbari">
  249.  
  250. <script type="text/javascript">
  251. window.onkeydown=function(event){
  252. var e=event||window.event;
  253. if(e.keyCode===85 && e.ctrlKey===true){
  254. e.stopPropagation();
  255. e.preventDefault();
  256. e.returnValue = false;
  257. return false;
  258. }
  259. }
  260. </script>
  261.  
  262. <script>
  263. (function($) {
  264. $(document).ready(function() {
  265.  
  266. $('.layer').each(function() {
  267.  
  268. var $this = $(this),
  269. limit = 30,
  270. $star = [];
  271.  
  272. while (limit) {
  273.  
  274. $star = $('<span/>').addClass('star');
  275. $star.html('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M10.744,5.372C7.777,5.372,5.372,2.967,5.372,0c0,2.967-2.405,5.372-5.372,5.372c2.967,0,5.372,2.405,5.372,5.372 C5.372,7.777,7.777,5.372,10.744,5.372z"/></svg>');
  276. $star.css({
  277. left: randomInt(1, 100) + '%',
  278. top: randomInt(1, 100) + '%',
  279. transform: 'scale(' + randomNum(0, 1) + ')',
  280. opacity: randomNum(0.6, 1)
  281. });
  282.  
  283. $this.append($star);
  284. limit--;
  285. }
  286. });
  287.  
  288. });
  289.  
  290. function randomInt(min, max) {
  291. return Math.floor((Math.random() * max) + min);
  292. }
  293.  
  294. function randomNum(min, max) {
  295. return Math.max((Math.random() * max), min).toFixed(1);
  296. }
  297. })(jQuery);
  298.  
  299. </script>
  300.  
  301. <script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
  302.  
  303.  
  304. <script type="text/javascript">
  305. $(document).ready(function(){
  306. $("#chargement").delay(18000).fadeOut(9);
  307. })
  308. </script>
  309. <script type="text/javascript">
  310. $(document).ready(function(){
  311. $("#content").delay(18000).fadeOut(9);
  312. })
  313. </script>
  314.  
  315. <style>
  316. #chargement{
  317. position: absolute;
  318. z-index: 99999999999999999999;
  319. margin-top: -20px;
  320. height: 200%;
  321. width: 100%;
  322. background-color:#000;
  323. }
  324. #chargement .content{
  325. position: absolute;
  326. margin: auto;
  327. transform: :translate(-50%,-50%);
  328. max-width: 50%;
  329. text-align: center;
  330. padding: 15px;
  331. margin-top: 50%;
  332. }
  333.  
  334. #content {
  335. clear: both;
  336. }
  337.  
  338. .bar{overflow:hidden;width: 392px;height: 27px;border: 1px solid #eaeaea;margin:auto;border-radius: 1px;position: relative;background: black;}
  339. .barr{overflow:hidden;width: 389px;height: 26px;border-radius: 1px;position: relative;background: black;margin: auto;margin-top: -1px;}
  340. .barr .sphere{margin-top:3px;display: block;width: 0px;height: 100%;background: url("../barra.png");animation: slide 6.75s infinite;-moz-animation: slide 6.75s infinite;-webkit-animation: slide 6.75s infinite;-ms-animation: slide 6.75s infinite;-o-animation: slide 6.75s infinite;}
  341. @-moz-keyframes slide{to{width: 10%;}}
  342. @-webkit-keyframes slide{to{width: 20%;}}
  343. @-ms-keyframes slide{to{width: 50%;}}
  344. @-o-keyframes slide{to{width: 70%;}}
  345. @keyframes slide{to{width:100%;}}
  346.  
  347. </style>
  348.  
  349. <script>
  350. (function($) {
  351. $(document).ready(function() {
  352.  
  353. $('.layer').each(function() {
  354.  
  355. var $this = $(this),
  356. limit = 30,
  357. $star = [];
  358.  
  359. while (limit) {
  360.  
  361. $star = $('<span/>').addClass('star');
  362. $star.html('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M10.744,5.372C7.777,5.372,5.372,2.967,5.372,0c0,2.967-2.405,5.372-5.372,5.372c2.967,0,5.372,2.405,5.372,5.372 C5.372,7.777,7.777,5.372,10.744,5.372z"/></svg>');
  363. $star.css({
  364. left: randomInt(1, 100) + '%',
  365. top: randomInt(1, 100) + '%',
  366. transform: 'scale(' + randomNum(0, 1) + ')',
  367. opacity: randomNum(0.6, 1)
  368. });
  369.  
  370. $this.append($star);
  371. limit--;
  372. }
  373. });
  374.  
  375. });
  376.  
  377. function randomInt(min, max) {
  378. return Math.floor((Math.random() * max) + min);
  379. }
  380.  
  381. function randomNum(min, max) {
  382. return Math.max((Math.random() * max), min).toFixed(1);
  383. }
  384. })(jQuery);
  385. </script>
  386.  
  387. <div id="chargement">
  388. <div id="content">
  389. <center>
  390. <br><br><br><br><br><br><br>
  391. <div id="imageclient" style="background-image:url(../ClientImage1.png);"></div>
  392.  
  393. <style type="text/css">#imageclient{width: 401px;
  394. height: 375px;
  395. margin: auto;
  396. text-align: center;
  397. background-position: center bottom;
  398. background-repeat: no-repeat;}</style>
  399. <text class="text" style="color:#fff;font-family: 'Corbel';font-size:30px;margin-top:-10px"><b><br>
  400. Attendi, Heden sta caricando!</b><br></text>
  401. </center>
  402. <div class="bar">
  403. <div class="barr">
  404. <span class="sphere"></span>
  405. </div>
  406. </div>
  407.  
  408. </div>
  409. </div>
  410. </div>
  411.  
  412. <script>
  413.  
  414. function chiudi(){
  415. document.getElementById('overlaysbari').style.visibility='hidden';
  416. }
  417. {setTimeout('chiudi()',18000) }
  418.  
  419. </script>
  420.  
  421. <script type="text/javascript">
  422. var andSoItBegins = (new Date()).getTime();
  423. </script>
  424. <link rel="shortcut icon" href="favicon.ico" type="image/vnd.microsoft.icon" />
  425. <link rel="alternate" type="application/rss+xml" title="Habbo: RSS" href="http://www.habbo.it/articles/rss.xml" />
  426. <script src="flashclient/libs2.js" type="text/javascript"></script>
  427. <script src="flashclient/visual.js" type="text/javascript"></script>
  428. <script src="flashclient/libs.js" type="text/javascript"></script>
  429. <script src="flashclient/common.js" type="text/javascript"></script>
  430. <link rel="stylesheet" href="flashclient/style.css" type="text/css" />
  431. <link rel="stylesheet" href="flashclient/bottons.css" type="text/css" />
  432. <link rel="stylesheet" href="flashclient/boxes.css" type="text/css" />
  433. <link rel="stylesheet" href="flashclient/tooltips.css" type="text/css" />
  434. <link rel="stylesheet" href="flashclient/changepassword.css" type="text/css" />
  435.  
  436. <script type="text/javascript">
  437.  
  438. </script>
  439. <script type="text/javascript">
  440. var habboReqPath = "";
  441. var habboStaticFilePath = "<?php echo $path; ?>/web-gallery";
  442. var habboImagerUrl = "http://www.habbo.it/habbo-imaging/";
  443. var habboDefaultClientPopupUrl = "http://51.255.210.242/client.php";
  444.  
  445.  
  446.  
  447. </script>
  448.  
  449.  
  450.  
  451. <link rel="stylesheet" href="flashclient/habboclient.css" type="text/css" />
  452. <link rel="stylesheet" href="flashclient/habboflashclient.css" type="text/css" />
  453. <script src="flashclient/habboflashclient.js" type="text/javascript"></script>
  454. <script type="text/javascript" src="./habboflashclient.js"></script>
  455.  
  456. <script type="text/javascript">
  457.  
  458.  
  459.  
  460. if (top == self) {
  461. FlashHabboClient.cacheCheck();
  462. }
  463. var flashvars = {
  464. "client.allow.cross.domain" : "1",
  465. "client.notify.cross.domain" : "0",
  466. "connection.info.host" : "51.255.210.242",
  467. "connection.info.port" : "30000",
  468. "site.url" : "51.255.210.242",
  469. "url.prefix" : "51.255.210.242",
  470. "client.reload.url" : "http://51.255.210.242/errore.php",
  471. "client.fatal.error.url" : "http://51.255.210.242/errore.php",
  472. "client.connection.failed.url" : "http://51.255.210.242/errore.php",
  473. "external.variables.txt" : "http://51.255.210.242/r63/gamedata/external_variables.php",
  474. "external.texts.txt" : "http://51.255.210.242/r63/gamedata/external_flash_texts.txt",
  475. "productdata.load.url" : "http://51.255.210.242/r63/gamedata/productdata.txt",
  476. "furnidata.load.url" : "http://51.255.210.242/r63/gamedata/furnidata.txt",
  477. "use.sso.ticket" : "1",
  478. "sso.ticket" : "<?php echo $myticket; ?>",
  479. <?php
  480. if($forward)
  481. {
  482. echo '"forward.type" : "'.$forward_type.'",';
  483. echo '"forward.id" : "'.$roomid.'",';
  484.  
  485. }
  486.  
  487. if(isset($_GET['friendId']))
  488. {
  489. echo '"friend.id" : "'.mysql_real_escape_string($_GET['friendId']).'",';
  490. }
  491. ?>
  492. "processlog.enabled" : "0",
  493. "account_id" : "0",
  494. "client.starting" : "Attendi per favore! Heden sta caricando",
  495. "flash.client.url" : "http://51.255.210.242/r63/dcr/hof_furni/",
  496. "user.hash" : "",
  497. "has.identity" : "1",
  498. "flash.client.origin" : "popup"
  499. };
  500. var params = {
  501. "base" : "http://51.255.210.242/r63/gordon/r63/",
  502. "allowScriptAccess" : "always",
  503. "menu" : "false"
  504.  
  505. };
  506.  
  507. if (!(HabbletLoader.needsFlashKbWorkaround())) {
  508. params["wmode"] = "opaque";
  509. }
  510.  
  511. FlashExternalInterface.signoutUrl = "http://51.255.210.242/logout.php";
  512.  
  513. var clientUrl = "http://51.255.210.242/r63/heden_swf.swf";
  514. swfobject.embedSWF(clientUrl, "flash-container", "100%", "100%", "10.0.0", "flashclient/expressInstall.swf", flashvars, params);
  515.  
  516.  
  517. window.onbeforeunload = unloading;
  518. function unloading() {
  519. var clientObject;
  520. if (navigator.appName.indexOf("Microsoft") != -1) {
  521. clientObject = window["flash-container"];
  522. } else {
  523. clientObject = document["flash-container"];
  524. }
  525. try {
  526. clientObject.unloading();
  527. } catch (e) {}
  528. }
  529. </script>
  530.  
  531.  
  532. <meta name="description" content="Heden Hotel" />
  533. <meta name="keywords" content="Heden Hotel" />
  534.  
  535.  
  536.  
  537.  
  538.  
  539.  
  540.  
  541.  
  542. <!--[if IE 8]>
  543. <link rel="stylesheet" href="http://dnt.webnet32.com/DCR/flashclient/ie8.css" type="text/css" />
  544. <![endif]-->
  545. <!--[if lt IE 8]>
  546. <link rel="stylesheet" href="http://dnt.webnet32.com/DCR/flashclient/ie.css" type="text/css" />
  547. <![endif]-->
  548. <!--[if lt IE 7]>
  549. <link rel="stylesheet" href="http://dnt.webnet32.com/DCR/flashclient/ie6.css" type="text/css" />
  550. <script src="http://dnt.webnet32.com/DCR/flashclient/pngfix.js" type="text/javascript"></script>
  551. <script type="text/javascript">
  552. try { document.execCommand('BackgroundImageCache', false, true); } catch(e) {}
  553. </script>
  554.  
  555.  
  556. <style type="text/css">
  557. body { behavior: url(/web-gallery/js/csshover.htc); }
  558. </style>
  559. <![endif]-->
  560. <meta name="build" content="63-BUILD259 - 23.02.2011 23:10 - it" />
  561. </head>
  562.  
  563.  
  564. <body id="client" class="flashclient">
  565. <div id="overlay"></div>
  566. <img src="http://dnt.webnet32.com/DCR/flashclient/page_loader.gif" style="position:absolute; margin: -1500px;" />
  567.  
  568.  
  569. <div id="overlay"></div>
  570. <div id="client-ui" >
  571. <div id="flash-wrapper">
  572.  
  573.  
  574. <div id="flash-container">
  575. <div id="content" style="width: 400px; margin: 20px auto 0 auto; display: none">
  576. <div class="cbb clearfix">
  577. <h2 class="title">Aggiorna Flash Player all'ultima versione disponibile</h2>
  578. <div class="box-content">
  579. <p>Puoi scaricare e istallare Adobe Flash Player <a href="http://get.adobe.com/flashplayer/">da questa URL</a>. Puoi trovare le istruzioni di istallazione <a href="http://www.adobe.com/products/flashplayer/productinfo/instructions/">cliccando qui</a>.</p>
  580.  
  581.  
  582. <p><a href="http://www.adobe.com/go/getflashplayer"><img src="flashclient/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
  583. </div>
  584. </div>
  585. </div>
  586. <script type="text/javascript">
  587. $('content').show();
  588. </script>
  589. <noscript>
  590. <div style="width: 400px; margin: 20px auto 0 auto; text-align: center">
  591. <p>If you are not automatically redirected, please <a href="/client/nojs">click here</a></p>
  592. </div>
  593. </noscript>
  594. </div>
  595. </div>
  596.  
  597.  
  598.  
  599. </div>
  600. <div style="display: none">
  601. <div id="habboCountUpdateTarget">
  602. 4,017 Habbo in Hotel
  603. </div>
  604. <script language="JavaScript" type="text/javascript">
  605. setTimeout(function() {
  606. HabboCounter.init(600);
  607. }, 20000);
  608. </script>
  609. </div>
  610. <script type="text/javascript">
  611. RightClick.init("flash-wrapper", "flash-container");
  612. if (window.opener && window.opener != window && window.opener.location.href == "/") {
  613. window.opener.location.replace("/me");
  614. }
  615. $(document.body).addClassName("js");
  616. HabboClient.startPingListener();
  617.  
  618. </script>
  619. <script>
  620. function cambia(){
  621. var immagine = document.getElementById("idImmagine");
  622. immagine.style.display = "inline";
  623. }
  624.  
  625. setTimeout("cambia();", 8500);
  626. </script>
  627.  
  628.  
  629. <script type="text/javascript">
  630. HabboView.run();
  631. </script>
  632.  
  633.  
  634.  
  635. <div style="position: absolute;
  636. top: 613px;
  637. right: 2px;
  638. width:43px;
  639. height:44px;
  640. cursor:pointer;
  641. background-image: url(../pannello-lpt/lpt.gif);" onclick="document.getElementById('catalogo_box2').style['display'] = 'block';">
  642. </div>
  643.  
  644. <div id="catalogo_box2" style="display:none;position:absolute;background-color:rgba(0,0,0,0.5);top:0;left:0;width:100%;height:100%;z-index:100000;font-family:Tahoma;z-index:1000;">
  645. <div style=" position: absolute;
  646. top: 120px;
  647. right: 448px;
  648. color: #FFF;
  649. font-weight: bold;
  650. font-size: 25px;
  651. cursor: pointer;
  652. font-family: cursive;" onclick="document.getElementById('catalogo_box2').style['display'] = 'none';">Chiudi Televisione</div>
  653.  
  654.  
  655.  
  656.  
  657.  
  658. </div>
  659. </div>
  660.  
  661.  
  662.  
  663.  
  664. <script src="http://www.google-analytics.com/ga.js" type="text/javascript"></script>
  665. <script type="text/javascript">
  666. var pageTracker = _gat._getTracker("UA-448325-20");
  667. pageTracker._trackPageview();
  668. </script>
  669.  
  670. <style>
  671.  
  672. .cbox {
  673. border-width: 2px;
  674. font-size: 8px;
  675. border-style: solid;
  676. border-radius: 5px;
  677. //background-color: rgba(31,30,26,0.6);
  678. border-color: #3A3F3F;
  679. font-family: 'Ubuntu', sans-serif;
  680. font-weight: bold;
  681. color: rgba(255,255,255,0.7);
  682. background: rgb(43,43,43);
  683. background: -moz-linear-gradient(left, rgba(43,43,43,1) 2%, rgba(30,30,30,1) 100%);
  684. background: -webkit-gradient(linear, left top, right bottom, color-stop(2%,rgba(43,43,43,1)), color-stop(100%,rgba(30,30,30,1)));
  685. background: -webkit-linear-gradient(left, rgba(43,43,43,1) 2%,rgba(30,30,30,1) 100%);
  686. background: -o-linear-gradient(left, rgba(43,43,43,1) 2%,rgba(30,30,30,1) 100%);
  687. background: -ms-linear-gradient(left, rgba(43,43,43,1) 2%,rgba(30,30,30,1) 100%);
  688. background: linear-gradient(to right, rgba(43,43,43,1) 2%,rgba(30,30,30,1) 100%);
  689. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2b2b2b', endColorstr='#1e1e1e',GradientType=0 );
  690. //border: solid rgb(56, 56, 52);
  691. //border-width: 2px 2px 2px 0;
  692. }
  693. .chats{
  694. //position:absolute;
  695. cursor:pointer;
  696. //bottom:10px;
  697. outline:none;
  698. float:right;
  699. margin-left:2px;
  700. margin-top:3px;
  701. width:35px;
  702. height:31px;
  703. border-radius:5px;
  704. background-color:transparent;
  705. border:none;
  706. background-image: url('/r63/c_images/album1584/LPT.gif');
  707. background-repeat:no-repeat;
  708. background-position:center;
  709. }
  710. #ch_title{
  711. color:#fff;
  712. font-weight:bold;
  713. font-family: ubuntu, ubuntu, sans-serif;
  714. font-size:12px;
  715. text-align:center;
  716. width:300px;
  717. height:30px;
  718. position:absolute;
  719. top:0px;
  720. line-height:30px;
  721. }
  722. #cal_top {
  723. position:absolute;
  724. left:480px;
  725. top:175px;
  726. width: 400px;
  727. height:200px;
  728. cursor: pointer;
  729. border-radius:8px;
  730. background-color: #367897;
  731. border:1px solid #000;
  732. display:none;
  733. }
  734. #cal_res{
  735. position:absolute;
  736. top:30px;
  737. left:-1px;
  738. background-color:#e8e8e0;
  739. width:400px;
  740. height:202px;
  741. border: 1px solid #000;
  742. border-bottom-width: 2px;
  743. border-bottom-left-radius:8px;
  744. border-bottom-right-radius:8px;
  745. }
  746. body{
  747. overflow:hidden;
  748. scrolling:no;
  749. height:100%;
  750. }
  751. .ch_hide{
  752. margin-top:5px;
  753. margin-left:270px;
  754. cursor:pointer;
  755. width:20px;
  756. height:20px;
  757. outline:none;
  758. border-radius:5px;
  759. background-color:transparent;
  760. border:none;
  761. background-image: url('http://i.imgur.com/Ax0HlFi.png');
  762. background-repeat:no-repeat;
  763. background-position:center;
  764. position:relative;
  765. z-index:9;
  766. }
  767. .ch_hide:hover{
  768. //background-color: rgba(255,255,255,0.6);
  769. background-image: url('http://i.imgur.com/Ax0HlFi.png');
  770. }
  771. </style>
  772.  
  773. <script>
  774. function oc(id) {
  775. if(document.getElementById(id).style.display == "block" )
  776. {
  777. document.getElementById(id).style.display = "none";
  778. }
  779. else
  780. {
  781. document.getElementById(id).style.display = "block";
  782. }
  783. }
  784. $(document).ready(function() {
  785. $('#cal_res_cont').load('count1.php?p=3');
  786. setInterval(function() {
  787. //$('#up').fadeOut('slow').load('count1.php?p=2').fadeIn("slow");
  788. $('#cal_res_cont').fadeOut('slow').load('count1.php?p=3').fadeIn('slow') },10000); });
  789. $(function() {
  790. $( "#sbox" ).draggable({ containment: 'window', scroll: false, axis: "x" });
  791. });
  792. $(function() {
  793. $( "#cal_top" ).draggable({ containment: 'window', scroll: false });
  794. });
  795. </script>
  796.  
  797.  
  798. <?php if($user_rank > 6 && $logged_in == true){ ?>
  799.  
  800. <div style="position: absolute; top: 619px;left: 1322px; padding-left:3px;padding-right:5px; cursor: pointer; display: block; height: 25px;z-index:999999999;">
  801.  
  802. <div class="chats" onclick="oc('cal_top');"></div>
  803. </div>
  804.  
  805.  
  806. <div id="cal_top" style="z-index:99;">
  807. <div id="cal_top_hide" class="ch_hide" onclick="oc('cal_top')" style="margin-left:370px;"></div>
  808. <div id="ch_title" style="width:400px;">Pannello Punti LPT</div>
  809. <div id="cal_res">
  810. <div id="cal_res_cont">
  811.  
  812. <iframe src="http://51.255.210.242/pannello-lpt/lpt.php" scrolling="no" style="border:2px solid blue;display: block;margin: 0px auto 0 auto;border: 0;height:198px;width: 399px;"></iframe>
  813.  
  814.  
  815.  
  816. </div>
  817. </div>
  818.  
  819. <?php } ?>
  820.  
  821. <script type="text/javascript">
  822. HabboView.run();
  823. </script>
  824. <script type="text/javascript">
  825. jjLoader.init('client', 6, 'web-gallery/v2/images/habbo.png',
  826. 'http://i46.tinypic.com/2sblnjo.png');
  827. </script>
  828.  
  829. </body>
  830. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement