Taşınabilir Post it MİŞŞ (NoT: Test Edildi Çalışıyo )

<html><head>  
<style>  
<!--  
  
/*Post-it note script- by javascriptkit.com  
Visit JavaScript Kit (http://javascriptkit.com) for script  
Credit must stay intact for use*/  
  
#postit{  
position:absolute;  
width:250;  
padding:5px;  
background-color:lightyellow;  
border:0px ;  
visibility:hidden;  
z-index:100;  
cursor:hand;  
}  
  
-->  
</style>  
<title>Taşınabilir Post-it (Not kağıdı)</title>  
</head>  
<body>  
<center><b>Taşınabilir post-it (not kağıdı)</b></center>  
  
<div id="postit" style="border:4px double #C0C0C0; left:254px;top:90px; position:absolute">  
<div align="right"><b><a href="javascript:closeit()"><font color="#000000">[ KAPAT ]</font> </a></b></div> 
  
  
  
<b>Not :</b><br>  
<p><font size="2" face="Arial"><a target=_blank  href="http://www.tr.cc/asp/down.html" target="_new"><b>Word , Excel , Adobe İndir</b><br> 
</a>Ücretsiz olması sebebiyle özelliklerinin kısıtlanmış olduğunu belirtelim</font><br>  
<font size="2" face="Arial"><a target=_blank  href="http://www.tr.cc/asp/oyun.html" target="_new"><b>Oyun oyna</b><br> 
</a>Her çeşit flash oyunun mevcut olduğu bir site , doğal olarak ücretsiz...</font><br>  
<p></p><center><input type="button" value="Bana Mail Atın" onClick="parent.location='mailto:ksabitk@hotmail.com'" ></center> 
  
  
</div>  
  
<script>  
  
// (0=hayır, 1=evet)  
  
var once_per_browser=0  
  
///Bundan sonrasına dokunmayınız   
  
var ns4=document.layers  
var ie4=document.all  
var ns6=document.getElementById&&!document.all  
  
if (ns4)  
crossobj=document.layers.postit  
else if (ie4||ns6)  
crossobj=ns6? document.getElementById("postit") : document.all.postit  
  
  
function closeit(){  
if (ie4||ns6)  
crossobj.style.visibility="hidden"  
else if (ns4)  
crossobj.visibility="hide"  
}  
  
function get_cookie(Name) {  
  var search = Name + "="  
  var returnvalue = "";  
  if (document.cookie.length > 0) {  
    offset = document.cookie.indexOf(search)  
    if (offset != -1) {   
          offset += search.length  
      end = document.cookie.indexOf(";", offset);  
      if (end == -1)  
         end = document.cookie.length;  
      returnvalue=unescape(document.cookie.substring(offset, end))  
      }  
   }  
  return returnvalue;  
}  
  
function showornot(){  
if (get_cookie('postdisplay')==''){  
showit()  
document.cookie="postdisplay=yes"  
}  
}  
  
function showit(){  
if (ie4||ns6)  
crossobj.style.visibility="visible"  
else if (ns4)  
crossobj.visibility="show"  
}  
  
if (once_per_browser)  
showornot()  
else  
showit()  
  
</script>  
  
<script language="JavaScript1.2">  
  
//explorer4 ve üstü tarayıcılar tarafından algılanabilir.  
  
function drag_drop(e){  
if (ie4&&dragapproved){  
crossobj.style.left=tempx+event.clientX-offsetx  
crossobj.style.top=tempy+event.clientY-offsety  
return false  
}  
else if (ns6&&dragapproved){  
crossobj.style.left=tempx+e.clientX-offsetx  
crossobj.style.top=tempy+e.clientY-offsety  
return false  
}  
}  
  
function initializedrag(e){  
if (ie4&&event.srcElement.id=="postit"||ns6&&e.target.id=="postit"){  
offsetx=ie4? event.clientX : e.clientX  
offsety=ie4? event.clientY : e.clientY  
  
tempx=parseInt(crossobj.style.left)  
tempy=parseInt(crossobj.style.top)  
  
dragapproved=true  
document.onmousemove=drag_drop  
}  
}  
document.onmousedown=initializedrag  
document.onmouseup=new Function("dragapproved=false")  
  
</script>  
</body>  
</html>