Facebook
From Innocent Pelican, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 279
  1. <html lang="en">
  2.  
  3. <head><link href='http://fonts.googleapis.com/css?family=Arima+Madurai&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
  4. <title>{Title}</title>
  5. <link rel="shortcut icon" href="{Favicon}"/>
  6. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  7. {block:Description}<meta name="description" content="{MetaDescription}"/>{/block:Description}
  8. <meta name="color:background" content="#ffffff" />
  9. <meta name="color:text" content="#000000" />
  10. <meta name="color:title" content="#000000" />
  11. <meta name="color:title hover" content="#000000" />
  12. <meta name="color:link" content="#000000" />
  13. <meta name="color:link hover" content="#000000" />
  14. <meta name="color:scrollbar" content="#000000" />
  15. <meta name="color:highlight text" content="#ffffff" />
  16. <meta name="color:highlight background" content="#cccccc" />
  17.  
  18.  
  19. <meta name="text:ask title" content="ask" />
  20. <meta name="text:link 1 title" content="" />
  21. <meta name="text:link 1" content="" />
  22. <meta name="text:link 2 title" content="" />
  23. <meta name="text:link 2" content="" />
  24. <meta name="text:link 3 title" content="" />
  25. <meta name="text:link 3" content="" />
  26. <meta name="text:link 4 title" content="" />
  27. <meta name="text:link 4" content="" />
  28. <meta name="text:link 5 title" content="" />
  29. <meta name="text:link 5" content="" />
  30. <meta name="text:link 6 title" content="" />
  31. <meta name="text:link 6" content="" />
  32.  
  33. <meta name="image:Left Background" content""/>
  34. <meta name="image:Right Background" content""/>
  35. <meta name="image:Cover Background" content""/>
  36. <meta name="image:Sidebar Background" content""/>
  37. <meta name="image:Sidebar" content""/>
  38.  
  39. <meta name="if:Two Columns" content""/>
  40. <meta name="if:Three Columns" content""/>
  41.  
  42. <meta name="if:Link One" content""/>
  43. <meta name="if:Link Two" content""/>
  44. <meta name="if:Link Three" content""/>
  45. <meta name="if:Link Four" content""/>
  46. <meta name="if:Link Five" content""/>
  47. <meta name="if:Link Six" content""/>
  48.  
  49.  
  50.  
  51.  
  52. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  53.  
  54. <script src="http://static.tumblr.com/rzl30kg/eAxm7a751/jquery.style-my-tooltips.js"></script>
  55. <script>
  56.    (function($){
  57.        $(document).ready(function(){
  58.            $("[title]").style_my_tooltips({
  59.                tip_follows_cursor:true,
  60.                tip_delay_time:200,
  61.                tip_fade_speed:300
  62.            }
  63.                );
  64.        });
  65.    })(jQuery);
  66. </script>
  67.  
  68. {block:IndexPage}
  69.  
  70. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  71. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  72.  
  73. <script type="text/javascript">
  74. $(window).load(function(){
  75. var $wall = $('#entries');
  76. $wall.imagesLoaded(function(){
  77. $wall.masonry({
  78. itemSelector: '#post, #post_photo',
  79. isAnimated : false
  80. });
  81. });
  82.  
  83. $wall.infinitescroll({
  84. navSelector : '#pagination',
  85. nextSelector : '#pagination a',
  86. itemSelector : '#post, #post_photo',
  87. bufferPx : 2000,
  88. debug : false,
  89. errorCallback: function() {
  90. $('#scroll').fadeOut('normal');
  91. }},
  92. function( newElements ) {
  93. var $newElems = $( newElements );
  94. $newElems.hide();
  95. $newElems.imagesLoaded(function(){
  96. $wall.masonry( 'appended', $newElems,{isAnimated: false}, function(){$newElems.fadeIn('slow');} );
  97. });
  98. }); $('#entries').show(500);
  99. });
  100. </script>
  101. {/block:IndexPage}
  102. <style type="text/css">
  103.  
  104. #s-m-t-tooltip{
  105. max-width:300px;
  106. margin:10;
  107. padding:5px 8px;
  108. border:1px solid #ccc;
  109. border-radius:4px;
  110. background:#FFF;
  111. z-index:999999;
  112. letter-spacing:0px;
  113. font-size:11px;
  114. text-transform:uppercase;
  115. box-shadow:1px 1px 3px rgba(0,0,0,.1);}
  116.  
  117. body{
  118. background-color:{color:background};
  119. background-image: url({image:Left Background}), url({image:Right Background}), url({image:Cover Background});
  120. background-attachment: fixed;
  121. background-position: bottom 10px left 0px, bottom 10px right 120px;
  122. background-repeat: no-repeat, no-repeat, no-repeat;
  123. -webkit-background-size: auto, auto, auto;
  124. -moz-background-size: auto, auto, auto;
  125. -o-background-size: auto, auto, auto;
  126. background-size: auto, auto, cover;
  127. color:{color:text};
  128. font-family:'Univers', sans-serif;
  129. font-size:11px;
  130. }
  131.  
  132. ::selection {
  133. background:{color:highlight background};
  134. color:{color:highlight text};
  135. }
  136. ::-moz-selection {
  137. background:{color:highlight background};
  138. color:{color:highlight text};
  139. }
  140.  
  141. ::-webkit-scrollbar{
  142. width:0px;
  143. height:4px;
  144. background:{color:background};}
  145.    
  146. ::-webkit-scrollbar-thumb{
  147. background:{color:scrollbar};
  148. height:5px;
  149. border:{color:background} solid 3px;}
  150.  
  151. a:link, a:active, a:visited{
  152. -webkit-transition: 0.3s ease;
  153. transition: 0.3s ease;
  154. -o-transition: 0.3s ease;
  155. -moz-transition: 0.3s ease;      
  156. color:{color:link};
  157. text-decoration:none;
  158. }
  159.  
  160. a:hover{
  161. -webkit-transition: 0.3s ease;
  162. transition: 0.3s ease;
  163. -o-transition: 0.3s ease;
  164. -moz-transition: 0.3s ease;
  165. color:{color:link hover};
  166. }
  167.  
  168. #n{
  169.    
  170. }
  171.  
  172. #entries{{block:IndexPage}
  173. width:250px;
  174. {block:IfTwoColumns}
  175. width:800px;
  176. {/block:IfTwoColumns}
  177. {block:IfThreeColumns}
  178. width:1000px;
  179. {/block:IfThreeColumns}
  180. margin-top:0px;
  181. margin-left:450px;
  182. position:absolute;
  183. {/block:IndexPage}{block:PermalinkPage}
  184. width:500px;
  185. margin-top:10px;
  186. margin-left:450px;
  187. position:absolute;
  188. {/block:PermalinkPage}
  189. }
  190.  
  191. #post{  
  192. {block:IndexPage}
  193. margin-top:10px;
  194. margin-left:10px;
  195. padding:10px;
  196. width:250px;
  197. {/block:IndexPage}
  198. {block:PermalinkPage}
  199. width:500px;
  200. {/block:PermalinkPage}
  201. }
  202.  
  203. #post .perma{
  204. {block:IndexPage}
  205. -webkit-transition: 0.3s ease;
  206. transition: 0.3s ease;
  207. -o-transition: 0.3s ease;
  208. -moz-transition: 0.3s ease;  
  209. margin-top:5px;
  210. text-align:center;
  211. width:250px;
  212. opacity:0;
  213. font-size:11px;
  214. text-transform:lowercase;
  215. {/block:IndexPage}{block:PermalinkPage}
  216. display:none;
  217. {/block:PermalinkPage}
  218. }    
  219.  
  220.  
  221.      
  222. #post:hover .perma{
  223. -webkit-transition: 0.3s ease;
  224. transition: 0.3s ease;
  225. -o-transition: 0.3s ease;
  226. -moz-transition: 0.3s ease;      
  227. opacity:1;
  228. }
  229.  
  230. #post .p{
  231. {block:IndexPage}
  232. -webkit-transition: 0.3s ease;
  233. transition: 0.3s ease;
  234. -o-transition: 0.3s ease;
  235. -moz-transition: 0.3s ease;  
  236. margin-top:-35px;
  237. padding:5px;
  238. text-align:center;
  239. position:absolute;
  240. background:#fff;
  241. width:100px;
  242. opacity:0;
  243. font-size:11px;
  244. text-transform:lowercase;
  245. {/block:IndexPage}{block:PermalinkPage}
  246. display:none;
  247. {/block:PermalinkPage}
  248. }    
  249.  
  250.  
  251.      
  252. #post:hover .p{
  253. -webkit-transition: 0.3s ease;
  254. transition: 0.3s ease;
  255. -o-transition: 0.3s ease;
  256. -moz-transition: 0.3s ease;
  257. width:250px;
  258. opacity:0;
  259. }
  260.  
  261. #sidebar{
  262. margin-top:100px;      
  263. text-align:center;
  264. background:transparent;
  265. width:200px;
  266. margin-left:100px;
  267. position:fixed;
  268. background-attachment: fixed;
  269. background-image:url({image:Sidebar Background});
  270. }
  271.  
  272. #sidebar img{
  273. max-width:150px;    
  274. }
  275.  
  276. #desc{
  277.     padding:6px;
  278. }
  279.  
  280. .title{
  281.     padding:6px;
  282. font-family:'Univers', sans-serif;    
  283. font-size:11px;}
  284.  
  285. .title a{
  286. -webkit-transition: 0.3s ease;
  287. transition: 0.3s ease;
  288. -o-transition: 0.3s ease;
  289. -moz-transition: 0.3s ease;    
  290. color:{color:title};    
  291. }
  292.  
  293. .title a:hover{
  294. -webkit-transition: 0.3s ease;
  295. transition: 0.3s ease;
  296. -o-transition: 0.3s ease;
  297. -moz-transition: 0.3s ease;    
  298. color:{color:title hover};    
  299. }
  300.  
  301. .links{
  302.     padding:6px;
  303.  text-transform:lowercase;  
  304. font-family:'Univers', sans-serif;
  305. font-size:11px;
  306. letter-spacing:0px;}
  307.  
  308. .links a{
  309. }
  310.  
  311. i, em{
  312. color:{color:link};}
  313. b, strong{
  314. font-weight:normal;
  315. text-transform:lowercase;
  316. color:{color:link};}
  317. ul,ol{
  318. margin:0px;
  319. margin-left:-5px;}
  320. p{
  321. padding:5px;
  322. margin:2px;}
  323.  
  324.  
  325.  
  326. #credit {
  327. position:fixed;
  328. font-family:'UniverS', sans-serif;
  329. font-size:11px;
  330. bottom:10px;
  331. z-index:999999999999;
  332. right:10px;
  333. text-transform:uppercase;
  334. }
  335.  
  336.  
  337. blockquote{
  338. padding:5px;
  339. border-left:1px solid #e1e1e1;
  340. margin-left:10px;    
  341. line-height:10px;
  342. }
  343.  
  344. {block:IndexPage}
  345. blockquote img{
  346. width:100px;  
  347. overflow:hidden;
  348. }
  349. {/block:IndexPage}
  350. {block:PermalinkPage}
  351. blockquote img{
  352. width:200px;  
  353. overflow:hidden;
  354. }
  355. {/block:PermalinkPage}
  356.  
  357. .text{
  358. text-decoration:italic;
  359. font-size:11px;
  360. text-transform:lowercase;
  361. }
  362.  
  363.  
  364. float:left;  
  365. padding:5px;    
  366. }
  367.  
  368.  
  369. font-size:11px;
  370. letter-spacing:0px;
  371. text-transform:uppercase;
  372. }
  373.  
  374.  
  375. padding:5px;
  376. border-radius:6px;
  377. background:#eee;
  378. min-height:28px;
  379. border-top:1px solid #000;
  380. font-weight: bold;
  381. }
  382.  
  383.  
  384. border-radius:6px;    
  385. }
  386.  
  387.  .player{  
  388. margin-left:110px;  
  389. margin-top:25px;
  390. position:absolute;
  391. padding:5px;
  392. max-width:135px;
  393. padding:5px;
  394. font-size:11px;
  395. text-transform:uppercase;
  396. z-index:999999;
  397. {block:PermalinkPage}
  398. margin-top:0px;
  399. {/block:PermalinkPage}
  400. }
  401.  
  402. .audioplayer{
  403. margin-top:20px;
  404. margin-left:20px;
  405. opacity:.7;
  406. width:27px;
  407. height:27px;
  408. border-radius:30px;
  409. overflow:hidden;
  410. background:#fff;
  411. padding:15px;
  412. }    
  413.  
  414. #cover{
  415. width:100px;
  416. background:#eee;
  417. position:absolute;
  418. height:100px;
  419. display:inline-block;
  420. float:left;    
  421. {block:PermalinkPage}
  422. margin-top:-20px;
  423. {/block:PermalinkPage}
  424. }
  425.  
  426. #cover img{
  427. width:100px;
  428. height:100px;
  429. {block:PermalinkPage}
  430. margin-top:0px;
  431. {/block:PermalinkPage}
  432. }
  433.  
  434. .playbutton {
  435. width:30px;
  436. height:30px;
  437. overflow:hidden;
  438. position:relative;
  439. z-index:1000;
  440. margin:0px;}
  441.  
  442. </style>
  443.  
  444. </head>
  445. <body>
  446. <script language=JavaScript>
  447. <!--
  448.  
  449. //Disable right mouse click Script
  450. //By Maximus ([email protected]) w/ mods by DynamicDrive
  451. //For full source code, visit http://www.dynamicdrive.com
  452.  
  453. var message="elówa;-)";
  454.  
  455. ///////////////////////////////////
  456. function clickIE4(){
  457. if (event.button==2){
  458. alert(message);
  459. return false;
  460. }
  461. }
  462.  
  463. function clickNS4(e){
  464. if (document.layers||document.getElementById&&!document.all){
  465. if (e.which==2||e.which==3){
  466. alert(message);
  467. return false;
  468. }
  469. }
  470. }
  471.  
  472. if (document.layers){
  473. document.captureEvents(Event.MOUSEDOWN);
  474. document.onmousedown=clickNS4;
  475. }
  476. else if (document.all&&!document.getElementById){
  477. document.onmousedown=clickIE4;
  478. }
  479.  
  480. document.oncontextmenu=new Function("alert(message);return false")
  481.  
  482. // -->
  483. </script>
  484.  
  485. <div id="sidebar">
  486. <img src="{image:Sidebar}">
  487. <div class="title"><a href="/">{Title}</a></div>
  488. <div id="desc">{Description}</div>
  489. <div class="links">
  490.  
  491. <a href="/ask">{text:ask title}</a><br>
  492. {block:IfLinkOne}
  493. <a href="{text:link 1}">{text:link 1 title}</a><br>
  494. {/block:IfLinkOne}
  495. {block:IfLinkTwo}
  496. <a href="{text:link 2}">{text:link 2 title}</a><br>
  497. {/block:IfLinkTwo}
  498. {block:IfLinkThree}
  499. <a href="{text:link 3}">{text:link 3 title}</a><br>
  500. {/block:IfLinkThree}
  501. {block:IfLinkFour}
  502. <a href="{text:link 4}">{text:link 4 title}</a><br>
  503. {/block:IfLinkFour}
  504. {block:IfLinkFive}
  505. <a href="{text:link 5}">{text:link 5 title}</a><br>
  506. {/block:IfLinkFive}
  507. {block:IfLinkSix}
  508. <a href="{text:link 6}">{text:link 6 title}</a><br>
  509. {/block:IfLinkSix}
  510.  
  511.  
  512. <div><embed src="https://www.sheepproductions.com/billy/billy.swf?autoplay=true&f0=http://k003.kiwi6.com/hotlink/gqrvtigoia/Quebonafide_-_Love_prod._FORXST_DOWNLOAD.mp3&t0=&f1=http://k003.kiwi6.com/hotlink/oked1gcr3t/Quebonafide_-_All_Black_prod_Young_Veteran_HIP-HOP_20.mp3&t1=&f2=http://k003.kiwi6.com/hotlink/8k06xkoivp/Quebonafide_-_Solipsyzm_prod_U137.mp3&t2=&f3=http://k003.kiwi6.com/hotlink/27x2grp6cn/Taco_Hemingway_-_WIATR_prod_Borucci.mp3&t3=&f4=http://k003.kiwi6.com/hotlink/m5cigtso5d/Deys_-_Cera_prod_Apriljoke_HIP-HOP_20.mp3&t4=&total=5" quality="high" wmode="transparent" width="200" height="10" name="billy" align="middle" type="application/x-shockwave-flash" /></div>
  513. </center> </div>
  514. </div>
  515.  
  516. <div id="entries">
  517.    
  518.  
  519. {block:Posts}
  520.  
  521.  
  522. {block:ContentSource}
  523. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  524. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  525. {/block:SourceLogo}
  526. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  527. {/block:ContentSource}
  528.  
  529. <div id="post">
  530.  
  531. {block:Photo}
  532. {block:IndexPage}
  533. <a href="{permalink}"><img src="{PhotoURL-250}"/></a>
  534. <div class="perma">
  535. <a href="{Permalink}">{NoteCountWithLabel}</a>  
  536. <a href="{ReblogURL}">  ↺</a>
  537. </div>
  538. {/block:IndexPage}
  539. {block:PermalinkPage}
  540. <a href="{permalink}"><img src="{PhotoURL-500}"/></a>
  541. {/block:PermalinkPage}
  542. {/block:Photo}
  543.  
  544.  
  545. {block:Photoset}
  546. {block:IndexPage}
  547. {Photoset-250}
  548.  <div class="perma">
  549. <a href="{Permalink}">{NoteCountWithLabel}</a>  
  550. <a href="{ReblogURL}">  ↺</a>
  551. </div>
  552. {/block:IndexPage}
  553. {block:PermalinkPage}
  554. {Photoset-500}
  555. {/block:PermalinkPage}
  556. {/block:Photoset}
  557.  
  558. {block:Video}
  559. {block:IndexPage}
  560. {Video-250}
  561. <div class="p">
  562. <a href="{Permalink}"></a>  
  563. <a href=""> </a>
  564. </div>
  565. {/block:IndexPage}
  566. {block:PermalinkPage}
  567. {Video-500}
  568. {/block:PermalinkPage}
  569. {/block:Video}
  570.  
  571.  
  572. {block:Text}
  573. <div class="text">{Title}</div>{Body}
  574. <div class="perma">
  575. <a href="{Permalink}">{NoteCountWithLabel}</a>  
  576. <a href="{ReblogURL}">  ↺</a>
  577. </div>
  578. {/block:Text}
  579.  
  580.  
  581. {block:Link}
  582. <div class="text" style="background:#eee; padding:5px; letter-spacing:1px; text-decoration:underline;"><a href="{URL}">{Name} →</a></div>
  583. {block:Description}{Description}{/block:Description}
  584. <div class="perma">
  585. <a href="{Permalink}">{NoteCountWithLabel}</a>  
  586. <a href="{ReblogURL}">  ↺</a>
  587. </div>
  588. {/block:Link}
  589.  
  590.  
  591. {block:Quote}
  592. <div class="text">"{Quote}"</div>
  593.  
  594. <div class="perma">
  595. <a href="{Permalink}">{NoteCountWithLabel}</a>  
  596. <a href="{ReblogURL}">  ↺</a>
  597. </div>
  598. {/block:Quote}
  599.  
  600.  
  601. {block:Chat}
  602. {block:Lines}
  603. {block:Label}<br>
  604. <div class="text" div style="font-size:11px; padding:5px; background:#eee;">{Label}
  605. {/block:Label}
  606. &nbsp;{Line}</div>
  607. {/block:Lines}
  608. <div class="perma">
  609. <a href="{Permalink}">{NoteCountWithLabel}</a>  
  610. <a href="{ReblogURL}">  ↺</a>
  611. </div>
  612. {/block:Chat}
  613.  
  614.  
  615. {block:Audio}
  616. <div class="player">{block:TrackName}{TrackName}{/block:TrackName}<br>
  617. {block:Artist}by {Artist}{/block:Artist}<br>
  618. {block:PlayCount}{PlayCount} plays{/block:PlayCount}
  619. </div>
  620. <div id="cover">
  621. {block:AlbumArt}
  622. <img src="{AlbumArtURL}">
  623. {/block:AlbumArt}</div>
  624. <div class="audioplayer"><div class="playbutton">
  625. {AudioPlayerWhite}</div></div><br><br>
  626. <div class="perma">
  627. <a href="{Permalink}">{NoteCountWithLabel}</a>  
  628. <a href="{ReblogURL}">  ↺</a>
  629. </div>
  630. {/block:Audio}
  631.  
  632.  
  633.  
  634. {block:Answer}<div id="questions">
  635. <img="{AskerURL-24}">{Asker}: {Question} :</div>
  636. {Answer}
  637. <div class="perma">
  638. <a href="{Permalink}">{NoteCountWithLabel}</a>  
  639. <a href="{ReblogURL}">  ↺</a>
  640. </div>
  641. {/block:Answer}
  642.  
  643. {block:PermalinkPage}<div id="n">
  644. <br>
  645. {block:Tags}<a href="/tagged/{Tag}"> #{Tag} </a>{/block:Tags}
  646. <br>
  647. {block:Date}{TimeAgo}{/block:Date}
  648. {block:NoteCount}
  649. {NoteCountWithLabel}
  650. {/block:NoteCount}
  651. <br>
  652. {block:Caption}
  653. {Caption}
  654. {/block:Caption}
  655. <br>
  656. {block:PostNotes}{PostNotes}{/block:PostNotes}
  657. </div>
  658. {/block:PermalinkPage}
  659. </div>
  660. {/block:Posts}
  661. </div>
  662.  
  663.  
  664.  
  665.  
  666. {block:IndexPage}
  667. {block:Pagination}
  668. <div id="pagination">
  669. {block:NextPage}
  670. <a id="nextPage" href="{NextPage}"></a>
  671. {/block:NextPage}
  672. {block:PreviousPage}
  673. <a href="{PreviousPage}"></a>
  674. {/block:PreviousPage}
  675. </div>
  676. {/block:Pagination}
  677. {/block:IndexPage}
  678.  
  679. </div>
  680. <div id="credit"><a href="http://resiliens.tumblr.com"></a></div>
  681. </div>
  682. </body>
  683.  
  684. <div id='cornerplayer'><center>
  685. <div id='cornericon'><img src="http://68.media.tumblr.com/tumblr_m7w2py1dEP1r6o8v2.gif"/></div>
  686. <div>
  687. <style type="text/css">body, a:hover {cursor: url(http://cur.cursors-4u.net/cursors/cur-9/cur817.cur), progress !important;}</style><a href="http://www.cursors-4u.com/cursor/2011/11/10/small-grey-outline-pointer.html" target="_blank" title="Small Grey Outline Pointer"><img src="http://cur.cursors-4u.net/cursor.png" border="0" alt="Small Grey Outline Pointer" style="position:absolute; top: 0px; right: 0px;" /></a>
  688.  
  689. <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# blog: http://ogp.me/ns/blog#"><script type="text/javascript">function tb8_makeArray(n){this.length = n;return this.length;}tb8_messages = new tb8_makeArray(3);tb8_messages[0] = "uciazliwy";tb8_rptType = 'infinite';tb8_rptNbr = 5;tb8_speed = 100;tb8_delay = 2000;var tb8_counter=1;var tb8_currMsg=0;var tb8_tekst ="";var tb8_i=0;var tb8_TID = null;function tb8_pisi(){tb8_tekst = tb8_tekst + tb8_messages[tb8_currMsg].substring(tb8_i, tb8_i+1);document.title = tb8_tekst;tb8_sp=tb8_speed;tb8_i++;if (tb8_i==tb8_messages[tb8_currMsg].length){tb8_currMsg++; tb8_i=0; tb8_tekst="";tb8_sp=tb8_delay;}if (tb8_currMsg == tb8_messages.length){if ((tb8_rptType == 'finite') && (tb8_counter==tb8_rptNbr)){clearTimeout(tb8_TID);return;}tb8_counter++;tb8_currMsg = 0;}tb8_TID = setTimeout("tb8_pisi()", tb8_sp);}tb8_pisi()</script><title></title>