STATUSS DA SAA SOLA KAYAN YAZI
-------------------------------------------------------------------------------
<script language="Javascript">
<!--
var x = 0
var speed = 90
var text = "BLUE-BLUE"
var course =76
var text2 = text
function Scroll() {
window.status = text2.substring(0, text2.length)
if (course < text2.length) {
setTimeout("Scroll2()", speed)
}
else {
text2 = " " + text2
setTimeout("Scroll()", speed);
}
}
function Scroll2() {
window.status = text2.substring(x, text2.length)
if (text2.length - x == text.length) { 
text2 = text
x = 0
setTimeout("Scroll()", speed);
}
else {
x++
setTimeout("Scroll2()", speed);
}
}
Scroll()
//-->
</script> 
-------------------------------------------------------------------------------
ANIMASYONLU TITLE

<SCRIPT>
var titletext=" KEY & NFO "
var thetext=""
var started=false
var step=0
var times=1

function welcometext()
{
times--
if (times==0)
{
if (started==false)
{
started = true;
document.title = titletext;
setTimeout("anim()",1);
}
thetext = titletext;
}
}

function showstatustext(txt)
{
thetext = txt;
setTimeout("welcometext()",4000)
times++
}

function anim()
{
step++
if (step==7) {step=1}
if (step==1) {document.title='|::::'+thetext+'::::|'}
if (step==2) {document.title=':|:::'+thetext+':::|:'}
if (step==3) {document.title='::|::'+thetext+'::|::'}
if (step==4) {document.title=':::|:'+thetext+':|:::'}
if (step==5) {document.title='::::|'+thetext+'|::::'}
if (step==6) {document.title=':::::'+thetext+':::::'}
setTimeout("anim()",200);
}

if (document.title)
window.onload=onload=welcometext
</SCRIPT> 
-------------------------------------------------------------------------------

SAYFAYA TARH

<script
language="JavaScript" style="bodycolor=#FFFFFF"><!--
var now = new Date(); var yr = now.getYear(); var mName = now.getMonth() + 1; var dName = now.getDay() + 1; 
var yr_str = " 19"; // yil 2000 iken, 19 sayisinin ikmamasini saglayacak string
var dayNr = ((now.getDate()<10) ? "" : "")+ now.getDate(); if(dName==1) Day = "Pazar"; if(dName==2) Day = "Pazartesi"; if(dName==3) Day = "Sali"; if(dName==4) Day = "arsamba"; if(dName==5) Day = "Persembe"; if(dName==6) Day = "Cuma"; if(dName==7) Day = "Cumartesi"; if(mName==1) Month="Ocak"; if(mName==2) Month="Subat"; if(mName==3) Month="Mart";
if(mName==4) Month="Nisan"; if(mName==5) Month="Mayis"; if(mName==6) Month="Haziran"; if(mName==7) Month="Temmuz"; if(mName==8) Month="Agustos"; if(mName==9) Month="Eyll";
if(mName==10) Month="Ekim"; if(mName==11) Month="Kasim"; if(mName==12) Month="Aralik";
if ( yr > 99 ) 
{
yr_str =" ";
if ( yr < 2000 ) yr += 1900; 
}
var todaysDate =(" " + dayNr + " " + Month + yr_str + yr + "" + ", " + Day + ""); document.open(); document.write("<FONT face=arial SIZE=1 color=white>"+todaysDate+"</FONT>");
// --></script> 