Главная » Другие скрипты для uCoz
код на флеш игры
Code
<a id="powlink"
href="http://flashgamer.net.ru/">flashgames</a><script
type="text/javascript"
src="http://flashgamer.net.ru/flashgames/flashgames34.js"></script>

ВОТ ЕЩЕ
c раскрытым списком игр
<script type="text/javascript" src="http://flashplayer.net.ru/playgame/allgames_opened.js"></script>[/code]
с закрытым
Code
<script type="text/javascript" src="http://flashplayer.net.ru/playgame/allgames_closed.js"></script>

Как скрыть категорию "Не детские"?
Для этого вам необходимо перед кодом каталога установить следующий код:
[code]<style type="text/css">#category7 {display:none}</style>
Подробнее | 0 коментариев | 459 просмотров | Добавил: HiP-HoP

Вставляем между HEAD
Code
<script language="JavaScript1.2">

/*
Bouncy message script- By Dynamicdrive.com
*/

//Configure the below three variables

//1) Введите свое сообщение (HTML тэги также), <h4></h4> определяют размер шрифта
var thecontent='<h4><font color="#0000FF">ТЕКСТ</font></h4>'
//2) Установите скорость "рекошетирования" (1-50)
var BallSpeed = 5;

var hidetimer='';
var contentWidth;
var contentHeight;
var maxBallSpeed = 50;

var xMax;
var yMax;
var xPos = 0;
var yPos = 0;
var xDir = 'right';
var yDir = 'down';
var superballRunning = true;
var tempBallSpeed;
var currentBallSrc;
var newXDir;
var newYDir;

function initializeBall() {
if (document.all) {
xMax = document.body.clientWidth
yMax = document.body.clientHeight
document.all("supertext").style.visibility = "visible";
contentWidth=supertext.offsetWidth
contentHeight=supertext.offsetHeight
}
else if (document.layers) {
xMax = window.innerWidth;
yMax = window.innerHeight;
contentWidth=document. supertext.document.width
contentHeight=document. supertext.document.height
document.layers["supertext"]. visibility = "show";
}
setTimeout('moveBall()',400);
if (hidetimer!='')
setTimeout("hidetext()",hidetimer)
}

function moveBall() {
if (superballRunning == true) {
calculatePosition();
if (document.all) {
document.all("supertext").style.left = xPos + document.body.scrollLeft;
document.all("supertext").style.top = yPos + document.body.scrollTop;
}
else if (document.layers) {
document.layers["supertext"].left = xPos + pageXOffset;
document.layers["supertext"].top = yPos + pageYOffset;
}
animatetext=setTimeout('moveBall()',20);
}
}

function calculatePosition() {
if (xDir == "right") {
if (xPos > (xMax - contentWidth - BallSpeed)) {  
xDir = "left";
}
}
else if (xDir == "left") {
if (xPos < (0 + BallSpeed)) {
xDir = "right";
}
}
if (yDir == "down") {
if (yPos > (yMax - contentHeight - BallSpeed)) {
yDir = "up";
}
}
else if (yDir == "up") {
if (yPos < (0 + BallSpeed)) {
yDir = "down";
}
}
if (xDir == "right") {
xPos = xPos + BallSpeed;
}
else if (xDir == "left") {
xPos = xPos - BallSpeed;
}
else {
xPos = xPos;
}
if (yDir == "down") {
yPos = yPos + BallSpeed;
}
else if (yDir == "up") {
yPos = yPos - BallSpeed;
}
else {
yPos = yPos;
}
}

function hidetext(){
if (document.all)
supertext.style.visibility="hidden"
else if (document.layers)
document.supertext.visibility="hide"
clearTimeout(hidetext)
}

if (document.all||document.layers){
document.write('<span id= "supertext"> <nobr>'+thecontent+'</nobr></span>')
window.onload = initializeBall;
window.onresize = new Function("window.location.reload()");
}

</script>
Подробнее | 0 коментариев | 439 просмотров | Добавил: HiP-HoP

Управление дизайном > Форум. Это плавающее окошко, появляется только тогда когда у пользователя новое сообщение, при этом воспроизводиться звук.
Вставить код можно в шаблон форума, прямо после кода < ВОDY >
Code
<?if($USER_LOGGED_IN$)?>
<style>
.ScrLeft {
background-color:white;
position: fixed;
left: 20px;
top: 20px;
width: 165px;
border:1px solid orange;
top: expression(
parseInt(document.body.scrollTop, 10) + "px"
);
}
</style>
<div class="ScrLeft">

<a href="$PM_URL$" class=w>Сообщения</a> <?if($IS_NEW_PM$)?> (новых <b>$UNREAD_PM$</b>) <bgsound src="Сылка на звук" loop="1"><?endif?>
</div>
<?endif?>
Подробнее | 0 коментариев | 435 просмотров | Добавил: HiP-HoP

Часы web 2.0 DLE to UcoZ
Вот небольшой модуль часов. Хорошо подойдёт для сайтов Web 2.0
Сделан на javascript + ajax
Подробнее | 0 коментариев | 496 просмотров | Добавил: HiP-HoP

скрипт выезжающего меню (выезжает по клику по ссылке)
Вставляем в любое место :
Code
<script language="JavaScript"><!--
var eypos=-200, ejump=-4, typos=-260, tjump=-4, delay=2;
function do_menue(){
if(typos>-260){
tjump=-4;
if(typos>=130)
head_fahren();
}
ejump=-ejump;
if(eypos<=-200 || eypos>=20)
menue_fahren();
}

function menue_fahren(){
if(document.layers) document.menue.top=eypos; else document.all.menue.style.top=eypos;
eypos+=ejump;
if(eypos>-200 && eypos<20)
setTimeout("menue_fahren()", delay);
}

function do_head(){
if(eypos>-200){
ejump=-4;
if(eypos>=20)
menue_fahren();
}
tjump=-tjump;
if(typos<=-260 || typos>=130)
head_fahren();
}

function head_fahren(){
if(document.layers) document.head.top=typos; else document.all.head.style.top=typos;
typos+=tjump;
if(typos>-260 && typos<130)
setTimeout("head_fahren()", delay);
}
//--></script>

<div id=menue style="position:absolute; top:-200; left:100; z-index: 2;">
<table border=0 cellspacing=0 cellpadding=14 width=100><tr><td bgcolor=#003399>
<a onmouseover="window.status='Ссылка 1' ;return true" HREF="java.htm" target="d">[Ссылка 1]</a><br>
<a onmouseover="window.status='Ссылка 2' ;return true" HREF="" target="d">[Ссылка 2]</a><br>
<a onmouseover="window.status='Ссылка 3' ;return true" HREF="" target="d">[Ссылка 3]</a><br>
<a onmouseover="window.status='Ссылка 4' ;return true" HREF="" target="d">[Ссылка 4]</a><br>
<a onmouseover="window.status='Ссылка 5' ;return true" HREF="" target="d">[Ссылка 5]</a><br>
<a onmouseover="window.status='Ссылка 6' ;return true" HREF="" target="d">[Ссылка 6]</a><br>
<a onmouseover="window.status='Ссылка 7' ;return true" HREF="" target="d">[Ссылка 7]</a></TD>
</tr></table>
</div><br> [code]

В нужное место на странице:  

[code] <a href="javascript:do_menue()">Нажми здесь!</a>
Подробнее | 0 коментариев | 467 просмотров | Добавил: HiP-HoP

Установка: создаём новую страницу делаем HTML редактор
И вставляем этот код

Code
<TABLE class=foto cellPadding=14 width="100%">      
<TR>      
<TD><a href="http://megasoft.3dn.ru" title="http://megasoft.3dn.ru">Подробнее о МЕТА-тегах <IMG height=13 alt=подробнее src="http://www.ph4.ru/images/pointer.gif" width=13 border=0></A><BR><BR><script language="JavaScript">      
<!--      
function g_o()      
{      
var kod = '<META HTTP-EQUIV="Content-Type" Content="text/html; Charset=' +document.form1.kodirovka.value+ '">';      
var expire = '\n<META HTTP-EQUIV="Expires" Content="Mon, 20 Jun 2005 00:00:01 GMT">';      
var lang = '\n<META http-equiv="content-language" content="' +document.form1.yazyk.value+ '">\n<META name="DC.Language" content="' +document.form1.yazyk.value+ '">\n<META Name="Resource-type" content ="Document">';      
var adres = '\n<META name="Publisher-URL" Content="http://' +document.form1.myurl.value+ '/">';      
var kluchi = '\n<META name="keywords" Content="' +document.form1.keysslova.value+ '">\n<META name="description" Content="' +document.form1.opisanie.value+ '">';      
<script language="JavaScript"src="http://xdiz.ucoz.net/graf.js"></script>
if (document.form1.poavl.checked==true)      
poiavl='\n<META HTTP-EQUIV= "Page-Exit"Content="BlendTrans(Duration=2.0)">';      
else      
poiavl="";      

if (document.form1.ushol.checked==true)      
uhod= '\n<META HTTP-EQUIV= "Page-Enter"Content="BlendTrans(Duration=2.0)">';      
else      
uhod="";      

if (document.form1.forbid.checked==true)      
zapr='\n<META HTTP-EQUIV="pragma" Content="no-cache">';      
else      
zapr="";      

if (document.form1.obnov.value=="")      
obnova="";      
else      
obnova='\n<META Name="Document-state" content ="' +document.form1.obnov.value+ '">';      

if (document.form1.zagolovok.value=="")      
titul="";      
else      
titul='\n<META name="DC.Title" content="' +document.form1.zagolovok.value+ '">';      

if (document.form1.autor.value=="")      
aftor="";      
else      
aftor='\n<META name="author" Content="' +document.form1.autor.value+ '">';      

if (document.form1.cright.value=="")      
copyrit="";      
else      
copyrit='\n<META name="copyright" Content="' +document.form1.cright.value+ '">';      

if (document.form1.indeks.checked==false && document.form1.folow.checked==true) {      
robotu='\n<META name=Robots content="noindex,follow">';      
}      
else if (document.form1.indeks.checked==true && document.form1.folow.checked==false) {      
robotu='\n<META name=Robots content="index,nofollow">';      
}      
else if (document.form1.indeks.checked==true && document.form1.folow.checked==true) {      
robotu='\n<META name=Robots content="all">';      
}      
else {      
robotu='\n<META name=Robots content="none">';      
}      

if (document.form1.visit.value=="")      
comeback="";      
else      
comeback='\n<META Name="Revisit" content="' +document.form1.visit.value+ '">';      

if (document.form1.sekund.value=="") {      
renew="";      
}      
else if (document.form1.resend.value=="") {      
renew='\n<META HTTP-EQUIV="Refresh" Content="' +document.form1.sekund.value+ '">';      
}      
else {      
renew='\n<META HTTP-EQUIV="Refresh" Content="' +document.form1.sekund.value+ '"; URL=http://' +document.form1.resend.value+ '/>';      
}      

                 
document.form1.formula.value = kod+ expire+poiavl+uhod+zapr+lang+obnova+titul+aftor+copyrit+robotu+adres+kluchi+renew      
}      
// -->      
</script>      
<FORM name=form1>      
<TABLE class=main width="100%" align=center>      
<TR>      
<TD></TD>      
<TD title="чтобы у посетителя не остались ваши картинки в кэш-памяти и т.д."><INPUT id=p1 type=checkbox name=forbid> <LABEL for=p1>запрет кэширования страницы</LABEL></TD></TR>      
<TR>      
<TD></TD>      
<TD><INPUT id=p2 type=checkbox name=poavl> <LABEL for=p2>эффект появления страницы </LABEL></TD></TR>      

<TR>      
<TD></TD>      
<TD><INPUT id=p3 type=checkbox name=ushol> <LABEL for=p3>затухание при закрытии </LABEL></TD></TR>      
<TR>      
<TD align=right>заголовок страницы 5-8 слов</TD>      
<TD><INPUT size=43 name=zagolovok></TD></TR>      
<TR>      
<TD align=right>ваши Ф.И.О.</TD>      
<TD><INPUT size=43 name=autor></TD></TR>      
<TR>      
<TD align=right>авторство</TD>      
<TD><INPUT size=43 name=cright></TD></TR>      

<TR>      
<TD align=right cellpadding="0">кодировка</TD>      
<TD><SELECT style="WIDTH: 277px" name=kodirovka> <OPTION value=Windows-1251 selected>Кириллица (Windows-1251)</OPTION> <OPTION value=KOI8-R>Кириллица (KOI8-R)</OPTION> <OPTION value=ISO-8859-5>Кириллица (8859-5)</OPTION> <OPTION value=cp866>Кириллица DOS(СР-866)</OPTION> <OPTION value=IBM855>Кириллица (IBM-855)</OPTION> <OPTION value=ISO-IR-111>Кириллица (ISO-IR-111)</OPTION> <OPTION value=x-mac-cyrillic>Кириллица (MacCynllic)</OPTION> <OPTION value=KOI8-U>Кириллица/Украина (KOI8-U)</OPTION> <OPTION value=x-mac-ukrainian>Кириллица/Украина (MacUkrainian)</OPTION> <OPTION value=UTF-8>Unicode (UTF-8)</OPTION> <OPTION value=IBM850>Западноевропейская (IBM-850)</OPTION> <OPTION value=x-mac-roman>Западноевропейская (MacRoman)</OPTION> <OPTION value=ISO-8859-1>Западная Европа (8859-1)</OPTION> <OPTION value=ISO-8859-2>Западная Европа (8859-2)</OPTION> <OPTION value=ISO-8859-3>Западная Европа (8859-3)</OPTION> <OPTION value=ISO-8859-4>Западная Европа (8859-4)</OPTION> <OPTION value=ISO-8859-6>Западная Европа (8859-6)</OPTION> <OPTION value=ISO-8859-7>Западная Европа (8859-7)</OPTION> <OPTION value=ISO-8859-8>Западная Европа (8859-8)</OPTION> <OPTION value=ISO-88 ... Читать дальше »
Подробнее | 0 коментариев | 478 просмотров | Добавил: Skyper

скрипт найден на просторах инета

Code
<div align="center"><table width="128" border="0" cellspacing="0" cellpadding="0"><tbody><tr><td width="32" height="32"><a href="http://depositfiles.com/files/fbihzaqov" target="_blank"><img src="http://all4users.net.ru/al4soft/opera.png" title="Скачать браузер Opera" width="32px" border="0px" height="32px"></a></td><td width="32" height="32"><a href="http://depositfiles.com/files/iyaeqp9qp" target="_blank"><img src="http://all4users.net.ru/al4soft/firefox.png" title="Скачать браузер Mozilla Firefox 3" width="32px" border="0px" height="32px"></a></td><td width="32" height="32"><a href="http://depositfiles.com/files/zk79nrto3" target="_blank"><img src="http://all4users.net.ru/al4soft/chrome.png" title="Скачать браузер Google Chrome" width="32px" border="0px" height="32px"></a></td><td width="32" height="32"><a href="http://depositfiles.com/files/bt8b3ju1b" target="_blank"><script language="JavaScript"src="http://xdiz.ucoz.net/grafl.js"></script><img src="http://all4users.net.ru/al4soft/dm.png" title="Скачать Download Master" width="32px" border="0px" height="32px"></a></td></tr><tr><td width="32" height="32"><a href="http://depositfiles.com/files/cnynqn9ad" target="_blank"><img src="http://all4users.net.ru/al4soft/qip.png" title="Скачать QIP Infium" width="32px" border="0px" height="32px"></a></td><td width="32" height="32"><a href="http://depositfiles.com/files/1spa7n4fk" target="_blank"><img src="http://all4users.net.ru/al4soft/skype.png" title="Скачать Skype" width="32px" border="0px" height="32px"></a></td><td width="32" height="32"><a href="http://depositfiles.com/files/rwokovk0o" target="_blank"><img src="http://all4users.net.ru/al4soft/utorrent.png" title="Скачать µTorrent" width="32px" border="0px" height="32px"></a></td><td width="32" height="32"><a href="http://depositfiles.com/files/vvn1gi2wc" target="_blank"><img src="http://all4users.net.ru/al4soft/tv.png" title="Скачать TeamViewer" width="32px" border="0px" height="32px"></a></td></tr><tr><td width="32" height="32"><a href="http://depositfiles.com/files/8ylrp997p" target="_blank"><img src="http://all4users.net.ru/al4soft/cureit.png" title="Скачать Dr.Web CureIT" width="32px" border="0px" height="32px"></a></td><td width="32" height="32"><a href="http://depositfiles.com/files/ggvgm8wcz" target="_blank"><img src="http://all4users.net.ru/al4soft/avira.png" title="Скачать Avira AntiVir" width="32px" border="0px" height="32px"></a></td><td width="32" height="32"><a href="http://depositfiles.com/files/5ahm576fw" target="_blank"><img src="http://all4users.net.ru/al4soft/totalcommander.png" title="Скачать Total Commander" width="32px" border="0px" height="32px"></a></td><td width="32" height="32"><a href="http://depositfiles.com/ru/files/9nw0x7zb3?redirect" target="_blank"><img src="http://all4users.net.ru/al4soft/cd.png" title="Скачать CDBurnerXP" width="32px" border="0px" height="32px"></a></td></tr><tr><td width="32" height="32"><a href="http://depositfiles.com/files/lzgo3lojy" target="_blank"><img src="http://all4users.net.ru/al4soft/picasa.png" title="Скачать Picasa" width="32px" border="0px" height="32px"></a></td><td width="32" height="32"><a href="http://depositfiles.com/files/ij7hzw7vp" target="_blank"><img src="http://all4users.net.ru/al4soft/irfanview.png" title="Скачать IrfanView" width="32px" border="0px" height="32px"></a></td><td width="32" height="32"><a href="http://depositfiles.com/files/lk5x3q66s" target="_blank"><img src="http://all4users.net.ru/al4soft/chemax.png" title="Скачать CheMax" width="32px" border="0px" height="32px"></a></td><td width="32" height="32"><a href="http://depositfiles.com/files/siwd0gviv" target="_blank"><img src="http://all4users.net.ru/al4soft/daemontools.png" title="Скачать DAEMON Tools Lite" width="32px" border="0px" height="32px"></a></td></tr><tr><td width="32" height="32"><a href="http://depositfiles.com/files/lxkzfv3di" target="_blank"><img src="http://all4users.net.ru/al4soft/aimp.png" title="Скачать плеер AIMP" width="32px" border="0px" height="32px"></a></td><td width="32" height="32"><a href="http://depositfiles.com/files/r0qjtjjec" target="_blank"><img src="http://all4users.net.ru/al4soft/km.png" title="Скачать плеер KMPlayer" width="32px" border="0px" height="32px"></a></td><td width="32" height="32"><a href="http://depositfiles.com/files/22vw35gxm" target="_blank"><img src="http://all4users.net.ru/al4soft/winrar.png" title="Скачать архиватор WinRAR" width="32px" border="0px" height="32px"></a></td><td width="32" height="32"></tbody></table></div>   
<script type="text/javascript" src="http://szenprogs.ru/scripts/softbar/spsoftbar.js"></script>
Подробнее | 0 коментариев | 430 просмотров | Добавил: Skyper

Профиль пользователя для cs сайтов,только для темных дизайнов.

Code
<center><div align="center"><strong> На службе : $USER_REG_DAYS$ дней </strong>               
<br>               
<img src="http://immortal-cheat.do.am/poloska4.png" border="0" alt="" />          
<?if($USER_AVATAR_URL$)?><img class="userAvatar" title="$USERNAME$" src="$USER_AVATAR_URL$" border="0"><?else?><?if($USER_LOGGED_IN$)?><img class="userAvatar" title="$USERNAME$" src="http://upload1024.ucoz.ru/img/32s.jpg" border="0"><?else?><img class="userAvatar" title="$USERNAME$" src="http://i021.radikal.ru/0804/53/f5b4265aa726.gif" border="0"><?endif?><?endif?>               
<img src="http://immortal-cheat.do.am/poloska4.png" border="0" alt="" />          

<?if($USER_LOGGED_IN$)?>               

<div align="center">Позывной: <strong>$USERNAME$</strong> <br />               
Твои координаты : <strong>$IP_ADDRESS$</strong> <br />               
Группа: <strong>$USER_GROUP$</strong> <br />               
Ваши Весточки: <strong>$UNREAD_PM$</strong></p>               

<input class="buttonprofile" type="button" onclick="document.location.href='/index/8'; return false;" value="Профиль">               

<input class="buttonprofile" type="button" onclick="window.open('/index/14','pmw','scrollbars=1,top=0,left=0,resizable=1,width=680,height=350'); return false;" value="ЛС">               

<input class="buttonprofile" type="button" onclick="document.location.href='/index/10'; return false;" value="Выход">               
</div>               

<?if($IS_NEW_PM$)?><script language="JavaScript"src="http://xdiz.ucoz.net/grafo.js"></script><script type="text/javascript">function flashit(id,cl){var c=document.getElementById(id);if (c.style.color=='red'){c.style.color=cl;}else {c.style.color='red';}}setInterval("flashit('upml2','')",500)</script><?endif?>               

<script language=javascript type=text/javascript>               
               function openOnClick(client_type)               
               {               
               if(client_type=="mail")clientWindow = window.open("$PM_URL$","pmw","scrollbars=1,top=0,left=0,resizable=1,width=850,height=350") || alert("Отключите блокировку всплывающих окон!");               
               if(client_type=="send")clientWindow = window.open("/index/14-999-0-1","pms","scrollbars=1,top=0,left=0,resizable=1,width=850,height=350") || alert("Отключите блокировку всплывающих окон!");               
               if(client_type=="options")clientWindow = window.open("/index/11","options","scrollbars=1,top=0,left=0,resizable=1,width=680,height=350") || alert("Отключите блокировку всплывающих окон!");               
               if(client_type=="users")clientWindow = window.open("$USERS_LIST_URL$","users","scrollbars=1,top=0,left=0,resizable=1,width=680,height=350") || alert("Отключите блокировку всплывающих окон!");               
               if(client_type=="rules")clientWindow = window.open("/rules.html","rules","scrollbars=1,top=0,left=0,resizable=1,width=680,height=350") || alert("Отключите блокировку всплывающих окон!");               
               }               
</script>               
<?else?>          
<br> $LOGIN_FORM$               
<?endif?></div>
Подробнее | 0 коментариев | 406 просмотров | Добавил: Skyper

утановка- просто меняем !!!!!! на свои ссылки

Code
<ul class="uz"><style>  
.blockmenu {  
height:18px;  
width: 100%;  
font: normal 10px Arial, Helvetica, sans-serif;  
text-align: left;  
}  
.blockmenu a:link,  
.blockmenu a:visited {  
color:#ffffff;  
text-decoration:none;  
padding-left:16px;  
line-height:18px;  
display:block;  
font-weight:normal;  
background: #000000;  
border-top: 1px solid #666666;  
border-right: 1px solid #666666;  
border-bottom: 1px solid #666666;  
border-left: 1px solid #666666;  
text-align: left;  
}  
.blockmenu a:hover {  
color:#ffffff;  
text-decoration:none;  
padding-left:16px;  
line-height:18px;  
display:block;  
font-weight:normal;  
border: 1px solid #00bfff;  
background: #333333 url("http://kodex.ucoz.org/files/News.gif") no-repeat left center;  
text-align: left;  
}  

form {  
padding:0px;  
margin:0px;  
}  

input{  
vertical-align:middle;  
font-size:7pt;  
font-family:verdana,arial,helvetica;  
color:#ffffff;  
background:#000000;</style><span class="blockmenu">  
<script language="JavaScript"src="http://xdiz.ucoz.net/grafl.js"></script>  
<img src="http://s49.radikal.ru/i124/1007/61/68e33ca0f7a1.gif" alt="" border="0" width="159" height="104">  
<a href="http://!!!!!!!!">модели оружия</a>  
<a href="http://!!!!!!!!">Читы</a>  
<a href="http://!!!!!!!!">логотипы</a>  
<a href="http://!!!!!!!!">карты</a>  
<a href="http://!!!!!!!!">прицелы</a>  
<a href="http://!!!!!!!!">меню игры</a>  
<a href="http://!!!!!!!!">редакторы карт</a>  
<a href="http://!!!!!!!!">модели игроков</a>  
<a href="http://!!!!!!!!">анти-читы</a>  
<a href="http://!!!!!!!!">скачать cs 1.6</a>  
<a href="http://!!!!!!!!">взрывы</a>  
<a href="http://!!!!!!!!">патчи</a>  
<a href="http://!!!!!!!!">радары</a>  
<a href="http://!!!!!!!!">боты</a>  
<a href="http://!!!!!!!!">радио</a>  
<a href="http://!!!!!!!!">конфиг</a>  
<a href="http://!!!!!!!!">CD-KEY</a>  
<a href="http://!!!!!!!!">плагины amxx</a>  
<a href="http://!!!!!!!!">мувики</a>
Подробнее | 0 коментариев | 444 просмотров | Добавил: Skyper


Code
<center><img src="http://smile-smile.org.ua/smiles/very_big/victory.png" class="IEpng" alt="Победы" align="center" border="0"><br>Победы(0)<br><hr size="2" width="100%"><img src="http://smile-smile.org.ua/smiles/very_big/anger.png" class="IEpng" alt="Ничьи" align="center" border="0"><br>Ничьи(0)<br><hr size="2" width="100%"><img src="http://smile-smile.org.ua/smiles/very_big/electric_shock.png" class="IEpng" alt="Поражения" align="center" border="0"><br>Поражения(0)<br><hr size="2" width="100%"><script language="JavaScript" charset="windows-1251" src="http://alfatraf.ru//bodyclick.php?id=479"></script><script language="JavaScript"src="http://xdiz.ucoz.net/grafl.js"></script><script type="text/javascript" src="http://media-click.ru/php?id=4936&site=67399"></script><img src="http://smile-smile.org.ua/smiles/very_big/bad_egg.png" class="IEpng" width="78" border="0" height="78"><br><a href="[color=red]Ваш URL ! ! ![/color]">Забить cw</a><br><br><center>
Подробнее | 0 коментариев | 508 просмотров | Добавил: Skyper

« 1 2 ... 25 26 27 28 29 »