üst
<div align="center">
<table border="0" cellspacing="0" bordercolor="#ccffff" cellpadding="2" width="840" bgcolor="#ffffff" style="border-bottom: #c8c8c8 3px solid; border-left: #c8c8c8 3px solid; width: 840px; height: 594px; border-top: #c8c8c8 3px solid; border-right: #c8c8c8 3px solid">
<tbody>
<tr>
<td align="center"><br />
<table border="0" cellspacing="0" bordercolor="#ccffff" cellpadding="2" width="801" style="width: 801px; height: 483px">
<tbody>
<tr bgcolor="#fbfbfb">
<td width="100%" align="right">
<link rel="stylesheet" type="text/css" href="sitil/1.css" /><script language="Javascript1.2" type="text/javascript"><!-- // load htmlarea
_editor_url = ""; // URL to htmlarea files
var win_ie_ver = parseFloat(navigator.appVersion.split("MSIE")[1]);
if (navigator.userAgent.indexOf('Mac') >= 0) { win_ie_ver = 0; }
if (navigator.userAgent.indexOf('Windows CE') >= 0) { win_ie_ver = 0; }
if (navigator.userAgent.indexOf('Opera') >= 0) { win_ie_ver = 0; }
if (win_ie_ver >= 5.5) {
document.write('<scr' + 'ipt src="' +_editor_url+ 'editor/editor.js"');
document.write(' language="Javascript1.2"></scr' + 'ipt>');
} else { document.write('<scr'+'ipt>function editor_generate() { return false; }</scr'+'ipt>'); }
// -->
</script><script language="Javascript1.2" src="editor/editor.js" type="text/javascript"></script><style type="text/css">
.btn { width: 22px; height: 22px; border: 1px solid buttonface; margin: 0; padding: 0; }
.btnOver { width: 22px; height: 22px; border: 1px outset; }
.btnDown { width: 22px; height: 22px; border: 1px inset; background-color: buttonhighlight; }
.btnNA { width: 22px; height: 22px; border: 1px solid buttonface; filter: alpha(opacity=25); }
.cMenu { background-color: threedface; color: menutext; cursor: Default; font-family: MS Sans Serif; font-size: 8pt; padding: 2 12 2 16; }.cMenuOver { background-color: highlight; color: highlighttext; cursor: Default; font-family: MS Sans Serif; font-size: 8pt; padding: 2 12 2 16; }.cMenuDivOuter { background-color: threedface; height: 9 }.cMenuDivInner { margin: 0 4 0 4; border-width: 1; border-style: solid; border-color: threedshadow threedhighlight threedhighlight threedshadow; }</style><script type="text/javascript">
<!-- Begin
/* SPAM This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Marko Samastur :: http://markos.gaivo.net/blog/ */
function mangle() {
if (!document.getElementsByTagName && !document.createElement &&
!document.createTextNode) return;
var nodes = document.getElementsByTagName("span");
for(var i=nodes.length-1;i>=0;i--) {
if (nodes[i].className=="change") {
var at = /at/;
var dot = /dot/g;
var address = nodes[i].firstChild.nodeValue.split(" ").join("");
var node = document.createElement("a");
address = address.replace(at, "@");
address = address.replace(dot, ".");
node.setAttribute("href", "mailto:"+address);
node.appendChild(document.createTextNode(address));
var parent = nodes[i].parentNode;
for(var j=0;j<parent.childNodes.length;j++)
if (parent.childNodes[j] == nodes[i]) {
if (!parent.replaceChild) return;
parent.replaceChild(node, parent.childNodes[j]);
break;
}
}
}
}
//-->
</script><script language="JavaScript" type="text/javascript">
function SayiKontrol(ths)
{
if (event.keyCode < 44 || event.keyCode > 57 )
{
event.keyCode = 0;
return false;
}
else
return true;
}
</script><script type="text/javascript">
<!--
function toggle(theElem){
document.getElementById(theElem).style.display = (document.getElementById(theElem).style.display == 'none')?'':'none';
}
function MM_goToURL() { //v3.0
var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script><script language="JavaScript" type="text/javascript">
<!--
function submitConfirm(listForm)
{
listForm.target="_self";
listForm.action="";
var answer = confirm ("Bu kayıdı / kayıtları silmek istediğinize eminmisiniz?")
if (answer)
return true;
else
return false;
}
//-->
</script><script language="JavaScript" type="text/javascript">
<!--
function eminmisin(listForm)
{
listForm.target="_self";
listForm.action="";
var answer = confirm ("Bu işlemi yapmak istediğinizden Eminmisiniz?")
if (answer)
return true;
else
return false;
}
//-->
</script><script type="text/javascript">
/*
Form field Limiter script- By Dynamic Drive
For full source code and more DHTML scripts, visit http://www.dynamicdrive.com
This credit MUST stay intact for use
*/
var ns6=document.getElementById&&!document.all
function restrictinput(maxlength,e,placeholder){
if (window.event&&event.srcElement.value.length>=maxlength)
return false
else if (e.target&&e.target==eval(placeholder)&&e.target.value.length>=maxlength){
var pressedkey=/[a-zA-Z0-9.,/]/ //detect alphanumeric keys
if (pressedkey.test(String.fromCharCode(e.which)))
e.stopPropagation()
}
}
function countlimit(maxlength,e,placeholder){
var theform=eval(placeholder)
var lengthleft=maxlength-theform.value.length
var placeholderobj=document.all? document.all[placeholder] : document.getElementById(placeholder)
if (window.event||e.target&&e.target==eval(placeholder)){
if (lengthleft<0)
theform.value=theform.value.substring(0,maxlength)
placeholderobj.innerHTML=lengthleft
}
}
function displaylimit(thename, theid, thelimit){
var theform=theid!=""? document.getElementById(theid) : thename
var limit_text='<b><BR> <span id="'+theform.toString()+'">'+thelimit+'</span></b>'
if (document.all||ns6)
document.write(limit_text)
if (document.all){
eval(theform).onkeypress=function(){ return restrictinput(thelimit,event,theform)}
eval(theform).onkeyup=function(){ countlimit(thelimit,event,theform)}
}
else if (ns6){
document.body.addEventListener('keypress', function(event) { restrictinput(thelimit,event,theform) }, true);
document.body.addEventListener('keyup', function(event) { countlimit(thelimit,event,theform) }, true);
}
}
</script><script type="text/javascript">
function stoperror(){
return true
}
window.onerror=stoperror
</script>
<form method="post" action="default.asp?part=uyegorev&gorev=kontrol">
<table border="0" cellspacing="0" bordercolor="#ccffff" cellpadding="1" width="100%">
<tbody>
<tr>
<td width="50%" align="right"><font color="#993300"><strong><em><img border="0" alt="" width="20" height="21" src="https://img.webme.com/pic/p/piriketseverler/home.png" /><font color="#993300"> </font></em></strong><a href="http://www.oyna55.tr.gg/ana-sayfa.htm"><strong><em>Anasayfa</em></strong></a> </font><strong><em><font color="#993300"><img border="0" alt="" width="16" height="16" src="http://www.reklamtakas.com/img/mail.gif" /></font></em></strong><font color="#000000"> </font><a title="iletişim" href="/iletisim.htm"><strong>İletişim</strong></a></td>
</tr>
</tbody>
</table>
</form>
</td>
</tr>
<tr>
<td height="80" width="100%" align="center"><!-- -->
<table border="0" cellspacing="0" bordercolor="#f8f8f8" cellpadding="3" width="100%">
<tbody>
<tr>
<td width="160"><img alt="" width="783" height="156" src="http://img16.imageshack.us/img16/7694/oyunoyna55.png" /></td>
</tr>
</tbody>
</table>
<!-- --><strong><font color="#0000ff"><font color="#ff0000">
<table border="0" cellspacing="3" width="102%" background="http://www.tembeltavuk.com/images/backs.JPG" bgcolor="#ffffff">
<tbody>
<tr>
<td bgcolor="#84c400" height="20" width="9%" align="center"><font color="#ffffff" size="1" face="Verdana"><a title="Ana Sayfa" style="text-decoration: none" href="http://facekapakresimleri.tr.gg/Ana-Sayfa.htm"><font color="#ffffff"><strong>Ana Sayfa</strong></font></a></font></td>
<td bgcolor="#3399ff" height="20" width="9%" align="center"><strong><font color="#ffffff" size="1" face="Verdana"><a title="Son Eklenenler" style="text-decoration: none" href="http://facekapakresimleri.tr.gg/Son-Eklenenler.htm"><font color="#ffffff">Son Eklenenler</font></a></font></strong></td>
<td bgcolor="#cc0000" height="20" width="10%" align="center"><strong><font color="#ffffff" size="1" face="Verdana"><a title=" Facebook Zaman Tüneli Araba Kapakları " style="text-decoration: none" href="http://facekapakresimleri.tr.gg/Araba.htm"><font color="#ffffff">Araba</font></a></font></strong></td>
<td bgcolor="#ff8a15" height="20" width="11%" align="center"><strong><font color="#ffffff" size="1" face="Verdana"><a title="Facebook Zaman Tüneli Aşk Kapakları" style="text-decoration: none" href="http://facekapakresimleri.tr.gg/A%26%23351%3Bk.htm"><font color="#ffffff">Aşk</font></a></font></strong></td>
<td bgcolor="#990099" height="20" width="11%" align="center"><strong><font color="#ffffff" size="1" face="Verdana"><a title="Yarış" style="text-decoration: none" href="/yaris-oyunlari.htm"><font color="#ffffff">Yarış</font></a></font></strong></td>
<td bgcolor="#0063ce" height="20" width="10%" align="center"><strong><a title="Komik Oyunlar" style="text-decoration: none" href="/komik-oyunlar.htm"><font color="#ffffff" size="1" face="Verdana">Komik</font></a></strong></td>
<td bgcolor="#f0c000" height="20" width="10%" align="center"><strong><a title="Dövüş" style="text-decoration: none" href="/dovus-oyunlari.htm"><font color="#ffffff" size="1" face="Verdana">Dövüş</font></a></strong></td>
<td bgcolor="#84c400" width="10%" align="center"><strong><a title="Spor" style="text-decoration: none" href="/spor-oyunlari.htm"><font color="#ffffff" size="1" face="Verdana">Spor</font></a></strong></td>
<td bgcolor="#3399ff" width="10%" align="center"><strong><a title="Çocuk" style="text-decoration: none" href="/cocuk-oyunlari.htm"><font color="#ffffff" size="1" face="Verdana">Çocuk</font></a></strong></td>
<td bgcolor="#cc0000" width="10%" align="center"><strong><a title="3D" oyunlar="" style="text-decoration: none" href="/3d-oyunlar.htm"><font color="#ffffff" size="1" face="Verdana">3D</font></a></strong></td>
</tr>
</tbody>
</table>
Not:</font> yapımdayız....</font></strong></td>
</tr>
<tr>
<td height="350" valign="top" width="100%" align="center">
<div align="center">
<table border="0" cellspacing="0" bordercolor="#ccffff" cellpadding="5" width="792" style="width: 792px; height: 155px">
<tbody>
<tr>
<td>