<!-- Eski browserlardan korumak için
  message= "www.kocplastik.com^" +
	"KALİTELİ,HIZLI VE GÜVENİLİR HİZMET^"+
	"Koç Plastik - Adem KOÇ^" +
	"Ali Ersoy Mahallesi 61. Sokak No:28/A-B Siteler - ANKARA^"+
<!--	" Telefon : 0312 284 42 01 (Pbx)   Fax: 0312 285 55 79^" +
	"Masa, Sandalye, Ranza ve her türlü Mobilyanız için PLASTİK PABUÇ ve TAKOZLAR^"+
	"siparis@kocplastik.com^"

  scrollSpeed = 100
  lineDelay   = 1500
  txt         = ""

  function scrollText(pos)
{
	if (message.charAt(pos) != '^')
		{
		txt = txt + message.charAt(pos)
		status = txt
		pauze = scrollSpeed
		}
	else
		{
		pauze = lineDelay
		txt = ""
		if (pos == message.length-1) pos = -1
		}
	pos++
	setTimeout("scrollText('"+pos+"')",pauze)
}

  // gizlemesonu -->
scrollText(0)
