<!-- Eski browserlardan korumak için
  message= "www.sarikoca.com^" +
	"Sarıkoca Ambalaj Makinaları San.ve Tic.Ltd.Şti.^" +
	"İkitelli Organize Sanayi Bölgesi Bağcılar - Güngören Sanayi Sit.2. Blok No:5 İktelli/İstanbul^" +
	"Tel: +90212 549 76 68 / 549 76 69   Fax: +90212 549 76 69^" +
	"www.sarikoca.com^" +
	"info@sarikoca.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)
