home *** CD-ROM | disk | FTP | other *** search
/ vedmo4ka5.ucoz.ru / vedmo4ka5.ucoz.ru.tar / vedmo4ka5.ucoz.ru / _tbkp / 1201803227.zip / si1 < prev    next >
Text File  |  2008-01-31  |  26KB  |  474 lines

  1. <SCRIPT LANGUAGE="JavaScript1.2">
  2.  
  3. <!-- Begin
  4. var no = 50; // ╨║╨╛╨╗╨╕╤ç╨╡╤ü╤é╨▓╨╛ ╤ü╨╜╨╡╨╢╨╕╨╜╨╛╨║
  5. var speed = 50; // ╤ü╨║╨╛╤Ç╨╛╤ü╤é╤î ╨┐╨░╨┤╨╡╨╜╨╕╤Å ╤ü╨╜╨╡╨╢╨╕╨╜╨╛╨║
  6. var snowflake = "snow.gif";
  7.  
  8. var ns4up = (document.layers) ? 1 : 0; // browser sniffer
  9. var ie4up = (document.all) ? 1 : 0;
  10. var dx, xp, yp; // coordinate and position variables
  11. var am, stx, sty; // amplitude and step variables
  12. var i, doc_width = 800, doc_height = 600; // ╤Ç╨░╨╖╨╝╨╡╤Ç "╨┐╨╛╨╗╤Å" ╨│╨┤╨╡ ╨╛╨╜╨╕ ╨▒╤â╨┤╤â╤é width=╤ê╨╕╤Ç╨╕╨╜╨░ height= ╨▓╤ï╤ü╨╛╤é╨░ 
  13. if (ns4up) {
  14. doc_width = self.innerWidth;
  15. doc_height = self.innerHeight;
  16. } else if (ie4up) {
  17. doc_width = document.body.clientWidth;
  18. doc_height = document.body.clientHeight;
  19. }
  20. dx = new Array();
  21. xp = new Array();
  22. yp = new Array();
  23. am = new Array();
  24. stx = new Array();
  25. sty = new Array();
  26. for (i = 0; i < no; ++ i) { 
  27. dx[i] = 0; // set coordinate variables
  28. xp[i] = Math.random()*(doc_width-50); // set position variables
  29. yp[i] = Math.random()*doc_height;
  30. am[i] = Math.random()*20; // set amplitude variables
  31. stx[i] = 0.02 + Math.random()/10; // set step variables
  32. sty[i] = 0.7 + Math.random(); // set step variables
  33. if (ns4up) { // set layers
  34. if (i == 0) {
  35. document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
  36. document.write("top=\"15\" visibility=\"show\"><img src=\"");
  37. document.write(snowflake + "\" border=\"0\"></layer>");
  38. } else {
  39. document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
  40. document.write("top=\"15\" visibility=\"show\"><img src=\"");
  41. document.write(snowflake + "\" border=\"0\"></layer>");
  42. }
  43. } else if (ie4up) {
  44. if (i == 0) {
  45. document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
  46. document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
  47. document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
  48. document.write(snowflake + "\" border=\"0\"></div>");
  49. } else {
  50. document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
  51. document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
  52. document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
  53. document.write(snowflake + "\" border=\"0\"></div>");
  54. }
  55. }
  56. }
  57. function snowNS() { // Netscape main animation function
  58. for (i = 0; i < no; ++ i) { // iterate for every dot
  59. yp[i] += sty[i];
  60. if (yp[i] > doc_height-50) {
  61. xp[i] = Math.random()*(doc_width-am[i]-30);
  62. yp[i] = 0;
  63. stx[i] = 0.02 + Math.random()/60;
  64. sty[i] = 0.7 + Math.random();
  65. doc_width = self.innerWidth;
  66. doc_height = self.innerHeight;
  67. }
  68. dx[i] += stx[i];
  69. document.layers["dot"+i].top = yp[i];
  70. document.layers["dot"+i].left = xp[i] + am[i]*Math.sin(dx[i]);
  71. }
  72. setTimeout("snowNS()", speed);
  73. }
  74. function snowIE() { // IE main animation function
  75. for (i = 0; i < no; ++ i) { // iterate for every dot
  76. yp[i] += sty[i];
  77. if (yp[i] > doc_height-50) {
  78. xp[i] = Math.random()*(doc_width-am[i]-30);
  79. yp[i] = 0;
  80. stx[i] = 0.02 + Math.random()/10;
  81. sty[i] = 0.7 + Math.random();
  82. doc_width = document.body.clientWidth;
  83. doc_height = document.body.clientHeight;
  84. }
  85. dx[i] += stx[i];
  86. document.all["dot"+i].style.pixelTop = yp[i];
  87. document.all["dot"+i].style.pixelLeft = xp[i] + am[i]*Math.sin(dx[i]);
  88. }
  89. setTimeout("snowIE()", speed);
  90. }
  91. if (ns4up) {
  92. snowNS();
  93. } else if (ie4up) {
  94. snowIE();
  95. }
  96. // End -->
  97. </script>
  98.  
  99. <TD align=middle>
  100. <TR>
  101. <center>
  102. <BODY onunload=d2();>
  103. <TD>
  104. <HTML><style>BODY {SCROLLBAR-FACE-COLOR: #ff6f0f; SCROLLBAR-HIGHLIGHT-COLOR: red; SCROLLBAR-SHADOW-COLOR: #adadad; SCROLLBAR-3DLIGHT-COLOR: #adadad; SCROLLBAR-ARROW-COLOR: red; SCROLLBAR-TRACK-COLOR: #e46e20; SCROLLBAR-DARKSHADOW-COLOR: #000000;
  105.  }</style> <title>╨¥╨░ ╤ü╨░╨╣╤é╨╡ ╨ƒ╤â╤é╤î ╨║ ╨í╨╡╨▒╨╡ ╨▓╤ï ╨╝╨╛╨╢╨╡╤é╨╡ ╤â╨╖╨╜╨░╤é╤î ╤ç╤é╨╛ ╤é╨░╨║╨╛╨╡ ╨╗╤Ä╨▒╨╛╨▓╤î, ╨┐╨╛╤ü╨╝╨╛╤é╤Ç╨╡╤é╤î ╨▓ ╤ü╨╛╨╜╨╜╨╕╨║, ╨┐╤Ç╨╛╤ç╨╕╤é╨░╤é╤î ╨┐╨╛╨╗╨╡╨╖╨╜╤ï╨╡ ╤ü╤é╨░╤é╤î╨╕, ╨┐╨╛╤ü╨╡╤é╨╕╤é╤î ╤ä╨╛╤Ç╤â╨╝ ╨╕ ╤â╨╖╨╜╨░╤é╤î ╨╛╤ü╨╜╨╛╨▓╤ï ╨╝╨░╨│╨╕╨╕.</title><meta name="description" content="╨Æ╤ü╤æ ╨╛ ╨╕╤ü╨┐╨╛╨╗╤î╨╖╨╛╨▓╨░╨╜╨╕╨╕ ╨╝╨░╨│╨╕╨╕ ╨▓ ╤ü╨╛╨▓╤Ç╨╡╨╝╨╡╨╜╨╜╨╛╨╣ ╨╢╨╕╨╖╨╜╨╕">
  106. <meta name="keywords" content="╨┐╤Ç╨╕╨▓╨╛╤Ç╨╛╤é,╨╝╨░╨│╨╕,╨╝╨░╨│╨╕╤Å,╨│╨╛╤Ç╨╛╤ü╨║╨╛╨┐,╨│╨╛╤Ç╨╛╤ü╨║╨╛╨┐╤ï,╨│╨░╨┤╨░╨╜╨╕╤Å,╤ü╨╛╨╜╨╜╨╕╨║,╤ä╤ì╨╜-╤ê╤â╨╣,╤é╨░╨╗╨╕╤ü╨╝╨░╨╜,╨▓╨╡╨┤╤î╨╝╨░,╤é╨░╤Ç╨╛,╨╗╤â╨╜╨╜╤ï╨╣ ╨║╨░╨╗╨╡╨╜╨┤╨░╤Ç╤î,╨╝╤â╨╖╤ï╨║╨░,╤ü╤é╨░╤é╤î╨╕,╤ä╨╛╤Ç╤â╨╝,╨╗╤Ä╨▒╨╛╨▓╤î,╨║╨░╤é╨░╨╗╨╛╨│,╨┤╨╡╤é╨╕,╤ü╤é╨╕╤à╨╕,╨╝╨░╨│╨╕╤ç╨╡╤ü╨║╨╕╨╣ ╨┐╤Ç╨░╨║╤é╨╕╨║╤â╨╝,╨╝╨░╨│╨╕╤Å ╨┤╨╡╨╜╨╡╨│,╨║╨╛╨╝╨┐╤î╤Ä╤é╨╡╤Ç,╨░╤Ç╨╛╨╝╨░╤é╨╡╤Ç╨░╨┐╨╕╤Å,╨┐╤Ç╨╕╨╝╨╡╤é╤ï,╤å╨╡╨╗╨╡╨▒╨╜╨╕╨║"> 
  107. <meta name="author" content="vedmo4ka5">
  108. </head> 
  109. <BODY style="PADDING-RIGHT: 0px; PADDING-LEFT: 0px; BACKGROUND: #dadada; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px">
  110. <center>
  111.  
  112. <TABLE height="100%" cellSpacing=0 cellPadding=0 width="100%" border=0>
  113. <TBODY>
  114. <TR>
  115. <TD style="BACKGROUND: url(http://src.ucoz.ru/t/231/1.gif) left 50%" width=50></TD>
  116. <TD vAlign=top><!-- Header -->
  117. <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
  118. <TBODY>
  119. <TR>
  120. <TD width=361><img height="202" alt="" src="http://vedmo4ka5.ucoz.ru/2.jpg" width="361" border="0" /></td>
  121. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/3.jpg)">
  122. <TABLE height=202 cellSpacing=0 cellPadding=0 width="100%" border=0>
  123. <TBODY>
  124. <TR>
  125. <TD align=right height=82><SPAN style="COLOR: #eb5f26; FONT-FAMILY: Monotype Corsiva">$WDAY$, $DATE$, $TIME$</SPAN></TD></TR>
  126. <TR>
  127. <TD align=left height=60><SPAN style="FONT: 24pt Monotype Corsiva; COLOR: #eb5f26"><STRONG>    ╨ƒ╤â╤é╤î ╨║ ╨í╨╡╨▒╨╡</STRONG></SPAN></TD></TR>
  128. <TR>
  129. <TD align=right height=25><?if($USER_LOGGED_IN$)?>╨Æ╤ï ╨▓╨╛╤ê╨╗╨╕ ╨║╨░╨║ <A href="$PERSONAL_PAGE_LINK$"><B>$USERNAME$</B></A> | ╨ô╤Ç╤â╨┐╨┐╨░"<U>$USER_GROUP$</U>"<?else?>╨ƒ╤Ç╨╕╨▓╨╡╤é╤ü╤é╨▓╤â╤Ä ╨Æ╨░╤ü <b>$USERNAME$</b><?endif?> | <A href="$RSS_LINK$">RSS</A></TD></TR>
  130. <TR>
  131. <TD vAlign=top align=right height=35> <a href="http://letitbit.net/?aff=strekoza5">╨ù╨░╤Ç╨░╨▒╨╛╤é╨╛╨║ ╨┤╨╗╤Å ╨▓╨╡╨▒╨╝╨░╤ü╤é╨╡╤Ç╨░</a> | <A href="$HOME_PAGE_LINK$">╨ô╨╗╨░╨▓╨╜╨░╤Å ╤ü╤é╤Ç╨░╨╜╨╕╤å╨░</A> <?if($USER_LOGGED_IN$)?>| <A href="$PERSONAL_PAGE_LINK$">╨£╨╛╨╣ ╨┐╤Ç╨╛╤ä╨╕╨╗╤î</A><?else?> | <a href="$REGISTER_LINK$">╨á╨╡╨│╨╕╤ü╤é╤Ç╨░╤å╨╕╤Å</a><?endif?> <?if($USER_LOGGED_IN$)?>| <A href="$LOGOUT_LINK$">╨Æ╤ï╤à╨╛╨┤</A><?else?> | <a href="$LOGIN_LINK$">╨Æ╤à╨╛╨┤</a><?endif?></TD></TR></TBODY></TABLE></TD> 
  132. <TD width=47><IMG src="http://src.ucoz.ru/t/231/4.jpg" border=0></TD></TR></TBODY></TABLE>
  133. <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
  134. <TBODY>
  135. <center><font color="#000000" face="Verdana"><strong><script
  136.  language="JavaScript">
  137. <!--begin fantasyflash.ru
  138. var h=(new Date()).getHours();
  139. if (h > 23 || h <7) document.write('╨ƒ╤Ç╨╕╨▓╨╡╤é ╨╗╤â╨╜╨░╤é╨╕╨║╨░╨╝! :)') ;
  140. if (h > 6 && h < 12) document.write('╨ö╨╛╨▒╤Ç╨╛╨╡ ╤â╤é╤Ç╨╛! ╨Ü╨░╨║ ╤ü╨┐╨░╨╗╨╛╤ü╤î? :)'); 
  141. if (h > 11 && h < 19) document.write('╨ö╨╛╨▒╤Ç╤ï╨╣ ╨┤╨╡╨╜╤î!'); 
  142. if (h > 18 && h < 24) document. write('╨ƒ╤Ç╨╕╨▓╨╡╤é! ╨ú╨╢╨╡ ╨▓╨╡╤ç╨╡╤Ç...'); 
  143. //-->
  144. </script></strong></font></center>
  145.  
  146. <a href="javascript:window.external.
  147. AddFavorite(location.href,
  148. %20'╨ƒ╤Ç╨╕╨║╨╛╨╗╤î╨╜╨░╤Å%20╤ü╤é╤Ç╨░╨╜╨╕╤ç╨║╨░');"> ╨ƒ╨╛╨╝╨╡╤ü╤é╨╕╤é╨╡ ╨╝╨╛╤Ä ╤ü╤é╤Ç╨░╨╜╨╕╤ç╨║╤â ╨▓ "╨ÿ╨╖╨▒╤Ç╨░╨╜╨╜╨╛╨╡"!</a>
  149. <TR>
  150. <TD width=12><IMG src="http://src.ucoz.ru/t/231/5.gif" border=0></TD>
  151. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/6.gif)"><IMG src="http://src.ucoz.ru/t/231/6.gif" border=0></TD>
  152. <TD width=11><IMG src="http://src.ucoz.ru/t/231/7.gif" border=0></TD></TR></TBODY></TABLE><!-- /Header --><!-- Body -->
  153. <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
  154. <TBODY>
  155. <TR>
  156. <TD vAlign=top><!-- -->
  157. <TABLE style="BACKGROUND: #ebebeb" cellSpacing=0 cellPadding=0 width=220 border=0>
  158. <TBODY>
  159. <TR>
  160. <TD width=28><IMG src="http://src.ucoz.ru/t/231/8.gif" border=0></TD>
  161. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/9.gif)" align=middle><B>╨£╨╡╤ü╤é╨╛ ╨┐╨╛╨┤ ╤Ç╨╡╨║╨╗╨░╨╝╤â</B></TD>
  162. <TD width=28><IMG src="http://src.ucoz.ru/t/231/10.gif" border=0></TD>
  163. <TR>
  164. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/11.gif)"></TD>
  165. <TD style="BACKGROUND: #ebebeb" align=middle><center>
  166.  
  167. <noindex><nofollow>
  168. <center><a href="http://www.menyala.ru/partner.asp?pid=1485"><img src="http://menyala.ru/images/banners/men_1_02.gif" width="100" height="100" alt="Menyala.ru" border="0"></a></center>
  169. </noindex></nofollow>
  170.  
  171. <b>╨ö╨╗╤Å ╤Ç╨░╨╖╨╝╨╡╤ë╨╡╨╜╨╕╤Å ╤Ç╨╡╨║╨╗╨░╨╝╤ï ╨┐╨╕╤ê╨╕╤é╨╡ ╨▓ ICQ: 72066629</b></center></TD>
  172. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/12.gif)"></TD></TR>
  173. <TR>
  174. <TD width=28><IMG src="http://src.ucoz.ru/t/231/13.gif" border=0></TD>
  175. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/14.gif)"></TD>
  176. <TD width=28><IMG src="http://src.ucoz.ru/t/231/15.gif" border=0></TD></TR></TBODY></TABLE>
  177.  
  178. <TABLE style="BACKGROUND: #ebebeb" cellSpacing=0 cellPadding=0 width=220 border=0>
  179. <TBODY>
  180. <TR>
  181. <TD width=28><IMG src="http://src.ucoz.ru/t/231/8.gif" border=0></TD>
  182. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/9.gif)" align=middle><B>╨£╨╡╨╜╤Ä ╤ü╨░╨╣╤é╨░</B></TD>
  183. <TD width=28><IMG src="http://src.ucoz.ru/t/231/10.gif" border=0></TD>
  184. <TR>
  185. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/11.gif)"></TD>
  186. <TD style="BACKGROUND: #ebebeb">$SITE_MENU$</TD>
  187. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/12.gif)"></TD></TR>
  188. <TR>
  189. <TD width=28><IMG src="http://src.ucoz.ru/t/231/13.gif" border=0></TD>
  190. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/14.gif)"></TD>
  191. <TD width=28><IMG src="http://src.ucoz.ru/t/231/15.gif" border=0></TD></TR></TBODY></TABLE><!--/--><!-- --><?if($NEWS_CATEGORIES$)?>
  192. <TABLE style="BACKGROUND: #ffffff" cellSpacing=0 cellPadding=0 width="100%" border=0>
  193. <TBODY>
  194. <TR>
  195. <TD width=28><IMG src="http://src.ucoz.ru/t/231/8.gif" border=0></TD>
  196. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/9.gif)" align=middle><B>╨¢╤â╨╜╨╜╤ï╨╡ ╤ä╨░╨╖╤ï</B></TD>
  197. <TD width=28><IMG src="http://src.ucoz.ru/t/231/10.gif" border=0></TD>
  198. <TR>
  199. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/11.gif)"></TD>
  200. <TD style="BACKGROUND: #ebebeb"><center>$GLOBAL_LUNNUE$</center></TD>
  201. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/12.gif)"></TD></TR>
  202. <TR>
  203. <TD width=28><IMG src="http://src.ucoz.ru/t/231/13.gif" border=0></TD>
  204. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/14.gif)"></TD>
  205. <TD width=28><IMG src="http://src.ucoz.ru/t/231/15.gif" border=0></TD></TR></TBODY></TABLE>
  206.  
  207. <TABLE style="BACKGROUND: #ffffff" cellSpacing=0 cellPadding=0 width="100%" border=0>
  208. <TBODY>
  209. <TR>
  210. <TD width=28><IMG src="http://src.ucoz.ru/t/231/8.gif" border=0></TD>
  211. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/9.gif)" align=middle><B>╨£╨╕╨╜╨╕-╨º╨░╤é</B></TD>
  212. <TD width=28><IMG src="http://src.ucoz.ru/t/231/10.gif" border=0></TD>
  213. <TR>
  214. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/11.gif)"></TD>
  215. <TD style="BACKGROUND: #ebebeb"><iframe style="width: 100%; height: 250px" frameborder="0" scrolling="no" hspace="0" vspace="0" allowtransparency="true" src="http://www.vedmo4ka5.ucoz.ru/mchat/"></iframe></TD>
  216. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/12.gif)"></TD></TR>
  217. <TR>
  218. <TD width=28><IMG src="http://src.ucoz.ru/t/231/13.gif" border=0></TD>
  219. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/14.gif)"></TD>
  220. <TD width=28><IMG src="http://src.ucoz.ru/t/231/15.gif" border=0></TD></TR></TBODY></TABLE>
  221. <TABLE style="BACKGROUND: #ffffff" cellSpacing=0 cellPadding=0 width="100%" border=0>
  222. <TBODY>
  223. <TR>
  224. <TD width=28><IMG src="http://src.ucoz.ru/t/231/8.gif" border=0></TD>
  225. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/9.gif)" align=middle><B>╨á╨░╨╖╨┤╨╡╨╗╤ï ╨╜╨╛╨▓╨╛╤ü╤é╨╡╨╣</B></TD>
  226. <TD width=28><IMG src="http://src.ucoz.ru/t/231/10.gif" border=0></TD>
  227. <TR>
  228. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/11.gif)"></TD>
  229. <TD style="BACKGROUND: #ebebeb">$NEWS_CATEGORIES$</TD>
  230. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/12.gif)"></TD></TR>
  231. <TR>
  232. <TD width=28><IMG src="http://src.ucoz.ru/t/231/13.gif" border=0></TD>
  233. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/14.gif)"></TD>
  234. <TD width=28><IMG src="http://src.ucoz.ru/t/231/15.gif" border=0></TD></TR></TBODY></TABLE><?endif?><!--/--><!-- --><?if($POLL$)?>
  235. <TABLE style="BACKGROUND: #ebebeb" cellSpacing=0 cellPadding=0 width=220 border=0>
  236. <TBODY>
  237. <TR>
  238. <TD width=28><IMG src="http://src.ucoz.ru/t/231/8.gif" border=0></TD>
  239. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/9.gif)" align=middle><B>╨£╨╛╨╣ ╨╛╨┐╤Ç╨╛╤ü</B></TD>
  240. <TD width=28><IMG src="http://src.ucoz.ru/t/231/10.gif" border=0></TD>
  241. <TR>
  242. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/11.gif)"></TD>
  243. <TD style="BACKGROUND: #ebebeb">$POLL$</TD>
  244. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/12.gif)"></TD></TR>
  245. <TR>
  246. <TD width=28><IMG src="http://src.ucoz.ru/t/231/13.gif" border=0></TD>
  247. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/14.gif)"></TD>
  248. <TD width=28><IMG src="http://src.ucoz.ru/t/231/15.gif" border=0></TD></TR></TBODY></TABLE><?endif?><!--/--></TD>
  249. <TD style="WIDTH: 80%" vAlign=top>
  250. <TABLE style="BACKGROUND: #ffffff" cellSpacing=0 cellPadding=0 width="100%" border=0>
  251. <TBODY>
  252. <TR> <div align="center"> <script language=javascript> 
  253. // <!-- 
  254. var vbn="43"; 
  255. var account = "488"; 
  256. var rnd = Math.round(Math.random() * 100000); 
  257. document.write('<iframe src="http://ad.bannerhost.ru/cgi-bin/iframe?'+vbn+ 
  258. ','+account+','+rnd + 
  259. '" width=468 height=60 marginwidth=0 marginheight=0 scrolling=no frameborder=0></iframe>'); 
  260. // --> 
  261. </script> <noscript><iframe src="http://ad.bannerhost.ru/cgi-bin/iframe?43,488,740" width=468 height=60 marginwidth=0 marginheight=0 scrolling=no frameborder=0></iframe></noscript> 
  262. <br><center><a href="http://catalog.magictower.ru/mwb/" target=_blank><small>MWB - ╨æ╨░╨╜╨╜╨╡╤Ç╨╜╨░╤Å ╤ü╨╡╤é╤î ╨┐╨╛ ╨╜╨╡╨┐╨╛╨╖╨╜╨░╨╜╨╜╨╛╨╝╤â</small></a></center>
  263. <div><!-- Ad24.ru - Advertising Network START -->
  264. <center>
  265. <SCRIPT language='JavaScript'> var loc = ''; </script>
  266. <SCRIPT language='JavaScript1.4'>try{ var loc = escape(top.location.href); }catch(e){;}</script>
  267. <SCRIPT language='JavaScript'>
  268. document.write("<SC"+"RIPT language='JavaScript' "+
  269. "src='http://ad.ad24.ru/bb.cgi?cmd=ad&hreftarget=_blank"+
  270. "&pubid=1290047&pg=1&r=js&ssi=nofillers&vbn=10&"+
  271. "num=&w=468&h=60&ref="+escape(document.referrer)+
  272. "&loc="+loc+"&nocache="+
  273. Math.round(Math.random()*999111)+
  274. "'>\n</SC"+"RIPT>");
  275. </script><br><a href="http://www.ad24.ru" target="blank" style="font-family: Arial; font-size: 10px;">Ad24.ru - Advertising Network</a></center>
  276. <!-- Ad24.ru - Advertising Network END --></div>
  277. <TD width=32><IMG src="http://src.ucoz.ru/t/231/16.gif" border=0> </TD>
  278. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/17.gif)"></TD>
  279. <TD width=27><IMG src="http://src.ucoz.ru/t/231/18.gif" border=0></TD>
  280. <TR>
  281. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/19.gif)"></TD>
  282. <TD style="BACKGROUND: #ffffff"><?if($ADD_NEWS_LINK$)?>
  283. <DIV style="PADDING-BOTTOM: 3px" align=right>[ <A href="$ADD_NEWS_LINK$">╨ö╨╛╨▒╨░╨▓╨╕╤é╤î ╨╜╨╛╨▓╨╛╤ü╤é╤î</A> ]</DIV><?endif?>$LAST_NEWS$</TD>
  284. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/20.gif)"></TD></TR>
  285. <TR>
  286. <TD width=32><IMG src="http://src.ucoz.ru/t/231/21.gif" border=0></TD>
  287. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/22.gif)"></TD>
  288. <TD width=27><IMG src="http://src.ucoz.ru/t/231/23.gif" border=0></TD></TR></TBODY></TABLE></TD>
  289. <TD vAlign=top><!-- --><?if($LOGIN_FORM$)?>
  290. <TABLE style="BACKGROUND: #ebebeb" cellSpacing=0 cellPadding=0 width=220 border=0>
  291. <TBODY>
  292. <TR>
  293. <TD width=28><IMG src="http://src.ucoz.ru/t/231/8.gif" border=0></TD>
  294. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/9.gif)" align=middle><B>╨ñ╨╛╤Ç╨╝╨░ ╨▓╤à╨╛╨┤╨░</B></TD>
  295. <TD width=28><IMG src="http://src.ucoz.ru/t/231/10.gif" border=0></TD>
  296. <TR>
  297. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/11.gif)"></TD>
  298. <TD style="BACKGROUND: #ebebeb" align=middle>$LOGIN_FORM$</TD>
  299. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/12.gif)"></TD></TR>
  300. <TR>
  301. <TD width=28><IMG src="http://src.ucoz.ru/t/231/13.gif" border=0></TD>
  302. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/14.gif)"></TD>
  303. <TD width=28><IMG src="http://src.ucoz.ru/t/231/15.gif" border=0></TD></TR></TBODY></TABLE><?endif?><!--/--><!-- -->
  304. <TABLE style="BACKGROUND: #ebebeb" cellSpacing=0 cellPadding=0 width=220 border=0>
  305. <TBODY>
  306. <TR>
  307. <TD width=28><IMG src="http://src.ucoz.ru/t/231/8.gif" border=0></TD>
  308. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/9.gif)" align=middle><B>╨Ü╤é╨╛ ON-LINE</B></TD>
  309. <TD width=28><IMG src="http://src.ucoz.ru/t/231/10.gif" border=0></TD>
  310. <TR>
  311. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/11.gif)"></TD>
  312. <TD style="BACKGROUND: #ebebeb" align=middle>$GLOBAL_ONLINE$</TD>
  313. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/12.gif)"></TD></TR>
  314. <TR>
  315. <TD width=28><IMG src="http://src.ucoz.ru/t/231/13.gif" border=0></TD>
  316. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/14.gif)"></TD>
  317. <TD width=28><IMG src="http://src.ucoz.ru/t/231/15.gif" border=0></TD></TR></TBODY></TABLE>
  318. <TABLE style="BACKGROUND: #ebebeb" cellSpacing=0 cellPadding=0 width=220 border=0>
  319. <TBODY>
  320. <TR>
  321. <TD width=28><IMG src="http://src.ucoz.ru/t/231/8.gif" border=0></TD>
  322. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/9.gif)" align=middle><B>╨á╨╡╨║╨╗╨░╨╝╨░</B></TD>
  323. <TD width=28><IMG src="http://src.ucoz.ru/t/231/10.gif" border=0></TD>
  324. <TR>
  325. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/11.gif)"></TD>
  326. <TD style="BACKGROUND: #ebebeb" align=middle height="300">
  327. <b>╨á╨╡╨║╨╗╨░╨╝╨║╨░ ╨╛╤é ╨│╤â╨│╨╗╨░, ╨┐╨╛╨║╨╗╨╕╨║╨░╨╣╤é╨╡:</b>
  328. <br>
  329. <marquee direction="up" scrollAmount=2 onmouseover=this.scrollAmount=0 onmouseout=this.scrollAmount=2 height=300>
  330. <div>
  331. <noindex><nofollow>
  332. <index>
  333. <center>
  334. <script type="text/javascript"><!--
  335. google_ad_client = "pub-4207235089577447";
  336. google_ad_width = 160;
  337. google_ad_height = 600;
  338. google_ad_format = "160x600_as";
  339. google_ad_type = "text_image";
  340. //2007-10-21: http://www.mail.ru/, http://www.rambler.ru/, http://www.yandex.ru/
  341. google_ad_channel = "4632892957+1048580718+2887102702";
  342. google_color_border = "FFFFFF";
  343. google_color_bg = "FFFFFF";
  344. google_color_link = "E1771E";
  345. google_color_text = "000000";
  346. google_color_url = "008000";
  347. //-->
  348. </script>
  349. <script type="text/javascript"
  350.  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
  351. </script></center>
  352. </index>
  353. <br><br>
  354. </noindex></nofollow>
  355.  
  356. </div>
  357. </MARQUEE>
  358. </TD>
  359. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/12.gif)"></TD></TR>
  360. <TR>
  361. <TD width=28><IMG src="http://src.ucoz.ru/t/231/13.gif" border=0></TD>
  362. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/14.gif)"></TD>
  363. <TD width=28><IMG src="http://src.ucoz.ru/t/231/15.gif" border=0></TD></TR></TBODY></TABLE>
  364. <TABLE style="BACKGROUND: #ebebeb" cellSpacing=0 cellPadding=0 width=220 border=0>
  365. <TBODY>
  366. <TR>
  367. <TD width=28><IMG src="http://src.ucoz.ru/t/231/8.gif" border=0></TD>
  368. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/9.gif)" align=middle><B>╨Ü╨░╨╗╨╡╨╜╨┤╨░╤Ç╤î</B></TD>
  369. <TD width=28><IMG src="http://src.ucoz.ru/t/231/10.gif" border=0></TD>
  370. <TR>
  371. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/11.gif)"></TD>
  372. <TD style="BACKGROUND: #ebebeb" align=middle><iframe name="fantasy" src="http://fantasyflash.ru/vr2/vr12.htm" height="174" width="164" scrolling="no" frameborder="0"></iframe></TD>
  373. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/12.gif)"></TD></TR>
  374. <TR>
  375. <TD width=28><IMG src="http://src.ucoz.ru/t/231/13.gif" border=0></TD>
  376. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/14.gif)"></TD>
  377. <TD width=28><IMG src="http://src.ucoz.ru/t/231/15.gif" border=0></TD></TR></TBODY></TABLE>
  378. <TABLE style="BACKGROUND: #ebebeb" cellSpacing=0 cellPadding=0 width=220 border=0>
  379. <TBODY>
  380. <TR>
  381. <TD width=28><IMG src="http://src.ucoz.ru/t/231/8.gif" border=0></TD>
  382. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/9.gif)" align=middle><B>╨ƒ╨╛╨│╨╛╨┤╨░</B></TD>
  383. <TD width=28><IMG src="http://src.ucoz.ru/t/231/10.gif" border=0></TD>
  384. <TR>
  385. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/11.gif)"></TD>
  386. <TD style="BACKGROUND: #ebebeb" align=middle><center><OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="100" HEIGHT="100"> <PARAM NAME=movie VALUE="http://img.gismeteo.ru/flash/100x100.swf"> <param name="FlashVars" value="&colorSet=green&noC=5&city0=27612&city1=26894&city2=99451&city3=29634&city4=26063&lang=ru"> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#FFFFFF><EMBED src="http://img.gismeteo.ru/flash/100x100.swf?&colorSet=green&noC=5&city0=27612&city1=26894&city2=99451&city3=29634&city4=26063&lang=ru" quality=high bgcolor=#FFFFFF WIDTH="100" HEIGHT="100" NAME="mtown" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"> </EMBED></OBJECT></center></TD>
  387. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/12.gif)"></TD></TR>
  388. <TR>
  389. <TD width=28><IMG src="http://src.ucoz.ru/t/231/13.gif" border=0></TD>
  390. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/14.gif)"></TD>
  391. <TD width=28><IMG src="http://src.ucoz.ru/t/231/15.gif" border=0></TD></TR></TBODY></TABLE>
  392. <TABLE style="BACKGROUND: #ebebeb" cellSpacing=0 cellPadding=0 width=220 border=0>
  393. <TBODY>
  394. <TR>
  395. <TD width=28><IMG src="http://src.ucoz.ru/t/231/8.gif" border=0></TD>
  396. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/9.gif)" align=middle><B>╨ƒ╨╛╨╕╤ü╨║ ╨▓ ╨ÿ╨╜╤é╨╡╤Ç╨╜╨╡╤é╨╡</B></TD>
  397. <TD width=28><IMG src="http://src.ucoz.ru/t/231/10.gif" border=0></TD>
  398. <TR>
  399. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/11.gif)"></TD>
  400. <TD style="BACKGROUND: #ebebeb" align=middle><!-- Search Google -->
  401. <center>
  402. <form method="get" action="http://www.google.ru/custom" target="google_window">
  403. <table bgcolor="#cccccc">
  404. <tr><td nowrap="nowrap" valign="top" align="left" height="32">
  405.  
  406. <br/>
  407. <label for="sbi" style="display: none">╨Æ╨▓╨╡╨┤╨╕╤é╨╡ ╤â╤ü╨╗╨╛╨▓╨╕╤Å ╨┐╨╛╨╕╤ü╨║╨░</label>
  408. <input type="text" name="q" size="19" maxlength="255" value="" id="sbi"></input>
  409. </td></tr>
  410. <tr><td valign="top" align="left">
  411. <label for="sbb" style="display: none">╨₧╤é╨┐╤Ç╨░╨▓╨╕╤é╤î ╤ä╨╛╤Ç╨╝╤â ╨┐╨╛╨╕╤ü╨║╨░</label>
  412. <input type="submit" name="sa" value="╨ƒ╨╛╨╕╤ü╨║ ╨▓ Google" id="sbb"></input>
  413. <input type="hidden" name="client" value="pub-4207235089577447"></input>
  414. <input type="hidden" name="forid" value="1"></input>
  415. <input type="hidden" name="channel" value="4233947616"></input>
  416. <input type="hidden" name="ie" value="windows-1251"></input>
  417. <input type="hidden" name="oe" value="windows-1251"></input>
  418. <input type="hidden" name="flav" value="0004"></input>
  419. <input type="hidden" name="sig" value="0IxqCSMlfmp8LrHZ"></input>
  420. <input type="hidden" name="cof" value="GALT:#CC0000;GL:1;DIV:#999999;VLC:CC0000;AH:center;BGC:E6E6E6;LBGC:E1771E;ALC:CC0000; LC:CC0000;T:000000;GFNT:7F7F7F;GIMP:7F7F7F;FORID:1"></input>
  421. <input type="hidden" name="hl" value="ru"></input>
  422. </td></tr></table>
  423. </form>
  424. </center>
  425. <!-- Search Google -->
  426. </TD>
  427. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/12.gif)"></TD></TR>
  428. <TR>
  429. <TD width=28><IMG src="http://src.ucoz.ru/t/231/13.gif" border=0></TD>
  430. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/14.gif)"></TD>
  431. <TD width=28><IMG src="http://src.ucoz.ru/t/231/15.gif" border=0></TD></TR></TBODY></TABLE><!--/--><!-- -->
  432. <TABLE style="BACKGROUND: #ebebeb" cellSpacing=0 cellPadding=0 width=220 border=0> 
  433. <TBODY>
  434. <TR>
  435. <TD width=28><IMG src="http://src.ucoz.ru/t/231/8.gif" border=0></TD>
  436. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/9.gif)" align=middle><B>╨ö╤Ç╤â╨╖╤î╤Å ╤ü╨░╨╣╤é╨░</B></TD>
  437. <TD width=28><IMG src="http://src.ucoz.ru/t/231/10.gif" border=0></TD>
  438. <TR>
  439. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/11.gif)"></TD>
  440. <TD style="BACKGROUND: #ebebeb">$GLOBAL_FRIENDS$</TD>
  441. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/12.gif)"></TD></TR>
  442. <TR>
  443. <TD width=28><IMG src="http://src.ucoz.ru/t/231/13.gif" border=0></TD>
  444. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/14.gif)"></TD>
  445. <TD width=28><IMG src="http://src.ucoz.ru/t/231/15.gif" border=0></TD></TR></TBODY></TABLE><!--/--><!-- --><?if($COUNTER$)?>
  446. <TABLE style="BACKGROUND: #ebebeb" cellSpacing=0 cellPadding=0 width=220 border=0>
  447. <TBODY>
  448. <TR>
  449. <TD width=28><IMG src="http://src.ucoz.ru/t/231/8.gif" border=0></TD>
  450. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/9.gif)" align=middle><B>╨í╤é╨░╤é╨╕╤ü╤é╨╕╨║╨░</B></TD>
  451. <TD width=28><IMG src="http://src.ucoz.ru/t/231/10.gif" border=0></TD>
  452. <TR>
  453. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/11.gif)"></TD>
  454. <TD style="BACKGROUND: #ebebeb" align=middle>$COUNTER$ <br><br> $GLOBAL_COUNTERS$</TD>
  455. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/12.gif)"></TD></TR>
  456. <TR>
  457. <TD width=28><IMG src="http://src.ucoz.ru/t/231/13.gif" border=0></TD>
  458. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/14.gif)"></TD>
  459. <TD width=28><IMG src="http://src.ucoz.ru/t/231/15.gif" border=0></TD></TR></TBODY></TABLE><?endif?><!--/--></TD></TR></TBODY> </TABLE><!-- /Body --><!-- Footer -->
  460. <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
  461. <TBODY>
  462. <TR>
  463. <TD width=12><IMG src="http://src.ucoz.ru/t/231/5.gif" border=0></TD>
  464. <TD style="BACKGROUND-IMAGE: url(http://src.ucoz.ru/t/231/6.gif)"><IMG src="http://src.ucoz.ru/t/231/6.gif" border=0></TD>
  465. <TD width=11><IMG src="http://src.ucoz.ru/t/231/7.gif" border=0></TD></TR></TBODY></TABLE>
  466. <TABLE cellSpacing=0 cellPadding=4 width="100%" border=0>
  467. <TBODY>
  468. <TR>
  469. <TD align=center width="100%">
  470. <DIV>Copyright Amethystium5 ┬⌐ 2006-2007</DIV></TD></TR>
  471. <TR>
  472. <TD align=middle>$POWERED_BY$</TD></TR></TBODY></TABLE><!-- /Footer -->
  473. <TR>
  474. <TD style="BACKGROUND: url(http://src.ucoz.ru/t/231/24.gif) right 50%" width=50></TD></TR></TBODY></TABLE></BODY></HTML>