Skocz do zawartości

Witamy w Nieoficjalnym polskim support'cie AMX Mod X

Witamy w Nieoficjalnym polskim support'cie AMX Mod X, jak w większości społeczności internetowych musisz się zarejestrować aby móc odpowiadać lub zakładać nowe tematy, ale nie bój się to jest prosty proces w którym wymagamy minimalnych informacji.
  • Rozpoczynaj nowe tematy i odpowiedaj na inne
  • Zapisz się do tematów i for, aby otrzymywać automatyczne uaktualnienia
  • Dodawaj wydarzenia do kalendarza społecznościowego
  • Stwórz swój własny profil i zdobywaj nowych znajomych
  • Zdobywaj nowe doświadczenia

Dołączona grafika Dołączona grafika

Guest Message by DevFuse
 

Wklejka 135119435029209 dodana przez 9dedex9, 25.10.2012 20:45
Typ:


overal_header.tmpl
135119435029209
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
89.
90.
91.
92.
93.
94.
95.
96.
97.
98.
99.
100.
101.
102.
103.
104.
105.
106.
107.
108.
109.
110.
111.
112.
113.
114.
115.
116.
117.
118.
119.
120.
121.
122.
123.
124.
125.
126.
127.
128.
129.
130.
131.
132.
133.
134.
135.
136.
137.
138.
139.
140.
141.
142.
143.
144.
145.
146.
147.
148.
149.
150.
151.
152.
153.
154.
155.
156.
157.
158.
159.
160.
161.
162.
163.
164.
165.
166.
167.
168.
169.
170.
171.
172.
173.
174.
175.
176.
177.
178.
179.
180.
181.
182.
183.
184.
185.
186.
187.
188.
189.
190.
191.
192.
193.
194.
195.
196.
197.
198.
199.
200.
201.
202.
203.
204.
205.
206.
207.
208.
209.
210.
211.
212.
213.
214.
215.
216.
217.
218.
219.
220.
221.
222.
223.
224.
225.
226.
227.
228.
229.
230.
231.
232.
233.
234.
235.
236.
237.
238.
239.
240.
241.
242.
243.
244.
245.
246.
247.
248.
249.
250.
251.
252.
253.
254.
255.
256.
257.
258.
259.
260.
261.
262.
263.
264.
265.
266.
267.
268.
269.
270.
271.
272.
273.
274.
275.
276.
277.
278.
279.
280.
281.
282.
283.
284.
285.
286.
287.
288.
289.
290.
291.
292.
293.
294.
295.
296.
297.
298.
299.
300.
301.
302.
303.
304.
305.
306.
307.
308.
309.
310.
311.
312.
313.
314.
315.
316.
317.
318.
319.
320.
321.
322.
323.
324.
325.
326.
327.
328.
329.
330.
331.
332.
333.
334.
335.
336.
337.
338.
339.
340.
341.
<head> 
<script> 
// Set the number of snowflakes (more than 30 - 40 not recommended) 
var snowmax=50
 
// Set the colors for the snow. Add as many colors as you like 
var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") 
 
// Set the fonts, that create the snowflakes. Add as many fonts as you like 
var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") 
 
// Set the letter that creates your snowflake (recommended:*) 
var snowletter="*" 
 
// Set the speed of sinking (recommended values range from 0.3 to 2) 
var sinkspeed=1 
 
// Set the maximal-size of your snowflaxes 
var snowmaxsize=32 
 
// Set the minimal-size of your snowflaxes 
var snowminsize=11 
 
// Set the snowing-zone 
// Set 1 for all-over-snowing, set 2 for left-side-snowing 
// Set 3 for center-snowing, set 4 for right-side-snowing 
var snowingzone=1 
 
/////////////////////////////////////////////////////////////////////////// 
// CONFIGURATION ENDS HERE 
/////////////////////////////////////////////////////////////////////////// 
 
 
// Do not edit below this line 
var snow=new Array() 
var marginbottom 
var marginright 
var timer 
var i_snow=0 
var x_mv=new Array(); 
var crds=new Array(); 
var lftrght=new Array(); 
var browserinfos=navigator.userAgent 
var ie5=document.all&&document.getElementById&&!browserinfos.match(/Opera/) 
var ns6=document.getElementById&&!document.all 
var opera=browserinfos.match(/Opera/) 
var browserok=ie5||ns6||opera 
 
function randommaker(range) { 
rand=Math.floor(range*Math.random()) 
return rand 
} 
 
function initsnow() { 
if (ie5 || opera) { 
marginbottom = document.body.clientHeight 
marginright = document.body.clientWidth 
} 
else if (ns6) { 
marginbottom = window.innerHeight 
marginright = window.innerWidth 
} 
var snowsizerange=snowmaxsize-snowminsize 
for (i=0;i<=snowmax;i++) { 
crds[i] = 0; 
lftrght[i] = Math.random()*15; 
x_mv[i] = 0.03 + Math.random()/10; 
snow[i]=document.getElementById("s"+i) 
snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] 
snow[i].size=randommaker(snowsizerange)+snowminsize 
snow[i].style.fontSize=snow[i].size 
snow[i].style.color=snowcolor[randommaker(snowcolor.length)] 
snow[i].sink=sinkspeed*snow[i].size/5 
if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} 
if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} 
if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} 
if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} 
snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) 
snow[i].style.left=snow[i].posx 
snow[i].style.top=snow[i].posy 
} 
movesnow() 
} 
 
function movesnow() { 
for (i=0;i<=snowmax;i++) { 
crds[i] += x_mv[i]; 
snow[i].posy+=snow[i].sink 
snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); 
snow[i].style.top=snow[i].posy 
 
if (snow[i].posy>=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)>(marginright-3*lftrght[i])){ 
if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} 
if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} 
if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} 
if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} 
snow[i].posy=0 
} 
} 
var timer=setTimeout("movesnow()",50) 
} 
 
for (i=0;i<=snowmax;i++) { 
document.write("<span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'>"+snowletter+"</span>") 
} 
if (browserok) { 
window.onload=initsnow 
} 
</script> 
</head></div>
</div>
</div>
 
 
 
 
 
 
 
 
 
 
 
 
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html dir="{S_CONTENT_DIRECTION}">
<head>
  <LINK REL="SHORTCUT ICON" HREF="http://vision-design.xaa.pl/favicon.ico">
  <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}">
  <meta http-equiv="Content-Style-Type" content="text/css">
  {META_DESC}
  {META}
  <title>{SITENAME} :: {PAGE_TITLE}</title>
  <link rel="stylesheet" href="templates/VisionStyle/{T_HEAD_STYLESHEET}" type="text/css">
	<script language="Javascript" type="text/javascript">
	<!--
	var factive_color = '{T_ACTIVE_COLOR}';
	var faonmouse_color = '{T_ONMOUSE_COLOR}';
	var faonmouse2_color = '{T_ONMOUSE2_COLOR}';
	var l_empty_message = '{L_EMPTY_MESSAGE}';
	var no_text_selected = '{L_NO_TEXT_SELECTED}';
	var cname = '{UNIQUE_COOKIE_NAME}';
	var cpath = '{COOKIE_PATH}';
	var cdomain = '{COOKIE_DOMAIN}';
	var csecure = '{COOKIE_SECURE}';
	<!-- BEGIN switch_enable_pm_popup -->
	if ( {PRIVATE_MESSAGE_NEW_FLAG} )
	{
		window.open('{U_PRIVATEMSGS_POPUP}', '_phpbbprivmsg', 'HEIGHT=225, resizable=yes, WIDTH=400');
	}
	<!-- END switch_enable_pm_popup -->
	<!-- BEGIN switch_report_popup -->
	report = window.open('{switch_report_popup.U_REPORT_POPUP}', '_phpbbreport', 'HEIGHT={switch_report_popup.S_HEIGHT}, resizable=yes, scrollbars=yes, WIDTH={switch_report_popup.S_WIDTH}');
	report.focus();
	<!-- END switch_report_popup -->
	<!-- BEGIN switch_enable_greeting_popup -->
	var greeting_flag = {GREETING_FLAG};
	if ( greeting_flag )
	{
		window.open('{U_GREETING_POPUP}', '_phpbbprivmsg', 'HEIGHT=225, resizable=yes, WIDTH=400');
	}
	<!-- END switch_enable_greeting_popup -->
	//-->
	</script>
	<script language="JavaScript" type="text/javascript" src="images/jsscripts.js"></script>
	<script language="JavaScript" type="text/javascript" src="templates/{STYLE_NAME}/data.js"></script>
	<!-- BEGIN overlib -->
	<script language="JavaScript" type="text/javascript" src="templates/{STYLE_NAME}/overlib.js"><!-- overLIB (c) Erik Bosrup --></script>
	<!-- END overlib -->
</head>
<body bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}" vlink="{T_BODY_VLINK}" onload="focus_field('focus');">
<!-- BEGIN body_with_loading -->
<script language="Javascript" type="text/javascript">
<!--
	document.write('<div id="hidepage" style="position: absolute; left:0px; top:0px; height: 100%; width: 100%; background-color: {T_BODY_BGCOLOR}; layer-background-color: {T_BODY_BGCOLOR};"><table width="100%" style="height: 100%"><tr><td align="center" valign="middle"><table width="50%" align="center" style="border: 1px solid {T_BODY_LINK}, solid"><tr><td align="center" class="row1"><span class="genmed"><br><b>{L_PAGE_LOAD_PLEASE_WAIT}<br><br><img src="images/loading.gif" alt=""><br><br>{PAGE_LOADING_STOP}<br>&nbsp;<\/span><\/td><\/tr><\/table><\/td><\/tr><\/table><\/div>');
//-->
</script>
<!-- END body_with_loading -->
<!-- BEGIN body_without_loading -->
<!-- END body_without_loading -->
<!-- BEGIN overlib -->
<div id="overDiv" style="position:absolute; visibility:hidden;  z-index: 10"></div>
<!-- END overlib -->
<!-- BEGIN advert -->
<table width="100%" cellspacing="0" cellpadding="0" border="0" align="center">
	<tr>
		<td valign="top">
<!-- END advert -->
 
<!-- BEGIN forum_thin -->
<div id="forum">
<!-- END forum_thin -->
<a name="top"></a>
<div id="content">
	{ROTATE_BANNER_1}
	  {FORUM_WARNINGS}
 
         <!-- BEGIN header -->
		<div id="logo">
			<div class="info">
 
 
			<span class="data"><img src="templates/VisionStyle/images/pl.png" class="pl" alt="flaga"> 
				Dzi&#347; jest
				<span style="color:#FF9900;font-weight:bold;"><script type="text/javascript">document.write(dateToDisplay.dayName);</script></span>
				<script type="text/javascript">document.write(dateToDisplay.day);</script>
				<script type="text/javascript">document.write(dateToDisplay.monthName);</script>
				<span style="color:#FF9900;font-weight:bold;"><script type="text/javascript">document.write(dateToDisplay.year);</script></span>
 
 
			</div>
			<div class="puste"></div>
			<div class="paneliserwery">
                        <span class="panel"><!-- BEGIN switch_user_logged_in -->
       <br><br><br>
    <b><font size="2"><a href="{U_PRIVATEMSGS}"  >{PRIVATE_MESSAGE_INFO}</a> <br>
    <a href="{U_PROFILE}"  >Edytuj Profil</a>                                  <br>
    <a href="{U_LOGIN_LOGOUT}"  >Wyloguj si�</a>   </font>    </b>
 
        <!-- END switch_user_logged_in -->
    <!-- BEGIN switch_user_logged_out -->
			<form method="post" action="{S_LOGIN_ACTION}">
			<input type="text" name="username" size="20" maxlength="40" value="ksywa" class="polelogin" style="border: 0px; padding-top:7px; padding-left:35px;" onBlur="if(this.value=='') this.value='ksywa';" onFocus="if(this.value=='ksywa') this.value='';" >
<br><br>
			<input type="password" name="password" size="20" maxlength="25" class="polehaslo" style="border: 0px; padding-top:7px; padding-left:35px;" value="has�o" onBlur="if(this.value=='') this.value='has�o';" onFocus="if(this.value=='has�o') this.value='';"
		<br><br><input type="checkbox" name="autologin" style="border:0;"> Zapami�taj mnie <input type="submit"  name="login" class="polezaloguj" value="" style="border: 0px;"> <br>
 
</form>
<br><a href="profile.php?mode=register" title="">Zarejestruj si� !</a><br>Zapomnia�e� has�a ? <a href="profile.php?mode=sendpassword" title="">Przypomnij has�o !</a>
<!-- END switch_user_logged_out --> </span>
                        <span class="serwery"><b><center>NASZE SERWERY:</center></b><br>
<br><center>
	<a href="http://www.gametracker.com/server_info/31.186.81.62:27067/" target="_blank"><img src="http://cache.www.gametracker.com/server_info/31.186.81.62:27067/b_350_20_42FF46_086C04_000000_000000.png" border="0" width="350" height="20" alt=""/></a><br><font color="FFFFFF"><b>Serwer #1<br></b></center>
<br><center>
	<a href="http://www.gametracker.com/server_info/31.186.81.62:27067/" target="_blank"><img src="http://cache.www.gametracker.com/server_info/31.186.81.62:27067/b_350_20_42FF46_086C04_000000_000000.png" border="0" width="350" height="20" alt=""/></a><br><font color="FFFFFF"><b>Serwer #2<br></b></center>
<br><center>
	<a href="http://www.gametracker.com/server_info/31.186.81.62:27067/" target="_blank"><img src="http://cache.www.gametracker.com/server_info/31.186.81.62:27067/b_350_20_42FF46_086C04_000000_000000.png" border="0" width="350" height="20" alt=""/></a><br><font color="FFFFFF"><b>Serwer #3<br></b></center>
</font></span>
 
 
                        </div>
			<div class="menu"><div class="specmenu">
			<div align="center">
			<center>
			<ul>
				<li><a href="{U_INDEX}" title=""><span><b><font size="2">Home</font></b></span></a></li>
				<li><a href="{U_SEARCH}" title="" ><span><b><font size="2">Szukaj</font></b></span></a></li>
				<li><a href="memberlist.php?g=47" title=""><span><b><font size="2">Userzy</font></b></span></a></li>
				<li><a href="{U_GROUP_CP}" title=""><span><b><font size="2">{L_USERGROUPS}</font></b></span></a></li>
				<li><a href="ADRES" title=""><span><b><font size="2">NAZWA</font></b></span></a></li>
			</ul>
			</center>
 
 
		</div><span class="zobaczwiecej"><a href="#" title=""></a></span></div>
		</div>
		</div>
 
 
 
		<br>
		  {ROTATE_BANNER_2}{BANNER_TOP}
		<br>
         <!-- END header -->
<div id="wraper">
		<!-- BEGIN simple_header -->
		<table width="100%" cellpadding="0" cellspacing="0" border="0" class="forumline">
			<tr>
				<th>{SITENAME}</th>
			</tr>
			<tr>
				<td class="cat" align="center">
					<!-- BEGIN switch_user_logged_in -->
					&bull; <a href="{U_FAQ}" class="mainmenu">{L_FAQ}</a> &bull; <a href="{U_SEARCH}" class="mainmenu">{L_SEARCH}</a> &bull; <a href="{U_MEMBERLIST}" class="mainmenu">{L_MEMBERLIST}</a> &bull; <a href="{U_GROUP_CP}" class="mainmenu">{L_USERGROUPS}</a>
					<!-- BEGIN statistics -->
					&bull; <a href="{U_STAT}" class="mainmenu">{L_STATISTICS}</a>
					<!-- END statistics -->
					<!-- BEGIN download -->
					&bull; <a href="{U_DOWNLOADS}" class="mainmenu">{L_DOWNLOADS}</a>
					<!-- END download -->
					&bull; <a href="{U_PROFILE}" class="mainmenu">{L_PROFILE}</a> &bull; <a href="{U_PRIVATEMSGS}" class="mainmenu">{PRIVATE_MESSAGE_INFO}</a> &bull; <a href="{U_LOGIN_LOGOUT}" class="mainmenu">{L_LOGIN_LOGOUT}</a>
					<!-- BEGIN album -->
					&bull; <a href="{U_ALBUM}" class="mainmenu">{L_ALBUM}</a>
					<!-- END album -->
					<!-- BEGIN chat -->
					&bull; <a href="{S_JOIN_CHAT}" target="_blank"class="mainmenu">Chat</a>
					<!-- END chat -->
					<!-- END switch_user_logged_in -->
					<!-- BEGIN switch_user_logged_out -->
					&bull; <a href="{U_FAQ}" class="mainmenu">{L_FAQ}</a>
					&bull; <a href="{U_SEARCH}" class="mainmenu">{L_SEARCH}</a> &bull; <a href="{U_MEMBERLIST}" class="mainmenu">{L_MEMBERLIST}</a> &bull; <a href="{U_GROUP_CP}" class="mainmenu">{L_USERGROUPS}</a>
					<!-- BEGIN statistics -->
					&bull; <a href="{U_STAT}" class="mainmenu">{L_STATISTICS}</a>
					<!-- END statistics -->
					&bull; <a href="{U_REGISTER}" class="mainmenu">{L_REGISTER}</a> &bull; <a href="{U_LOGIN_LOGOUT}" class="mainmenu">{L_LOGIN_LOGOUT}</a>
					<!-- BEGIN album -->
					&bull; <a href="{U_ALBUM}" class="mainmenu">{L_ALBUM}</a>
					<!-- END album -->
					<!-- BEGIN chat -->
					&bull; <a href="{S_JOIN_CHAT}" target="_blank"class="mainmenu">Chat</a>
					<!-- END chat -->
					<!-- BEGIN download -->
					&bull; <a href="{U_DOWNLOADS}" class="mainmenu">{L_DOWNLOADS}</a>
					<!-- END download -->
					<!-- END switch_user_logged_out -->
					<!-- BEGIN switch_report_list -->
					&bull; <a href="{switch_report_list.U_REPORT_LIST}" class="mainmenu">{switch_report_list.L_REPORT_LIST}</a>
					<!-- END switch_report_list -->
					&bull;
				</span></td>
            </tr>
         </table>
         <!-- END simple_header -->
      {ROTATE_BANNER_3}
      <!-- BEGIN switch_enable_board_msg --> 
	  <div id="hm" style=" position: relative;">
      <table width="100%" class="forumline" cellspacing="7" cellpadding="7" border="0" align="center">
        <tr> 
         <th class="thCornerL1" height="31" nowrap="nowrap" onclick="javascript:ShowHide('hm','hm2','hm3');" style="cursor: pointer" title="{L_VHIDE}">&nbsp;{L_BOARD_MSG}&nbsp;</th>
        </tr>
        <tr>
         <td class="row1"><span class="gen">{BOARD_MSG}</span></td>
        </tr>
      </table>
	</div>
	<div id="hm2" style="display: none; position: relative;">
	<table width="100%" class="forumline" cellspacing="1" cellpadding="3" border="0" align="center">
	  <tr> 
	   <th class="thCornerL1" height="31" nowrap="nowrap" onclick="javascript:ShowHide('hm','hm2','hm3');" style="cursor: pointer">&nbsp;{L_BOARD_MSG}&nbsp;</th>
	  </tr>
	</table>
	</div>
	<script language="javascript" type="text/javascript">
	<!--
	if(GetCookie('hm3') == '2') ShowHide('hm', 'hm2', 'hm3');
	//-->
	</script>
	<!-- END switch_enable_board_msg -->