<!-- Eski browserlardan korumak için
  message= "www.efilateli.com^" +
	"1863 yılından günümüze Türk Pulları İnternette!...^"+
<!--	"Çelenk Dış Ticaret Gümrük ve Nakliyat Hiz. Ltd. Şti.^" +
<!--	"Ziyabey Cad. 5.Sokak No: 4 B Blok Kat :2 Daire 3 - 4 Balgat / ANKARA^" +
<!--	" Telefon : 0312 284 42 01 (Pbx)   Fax: 0312 285 55 79^" +
	"Pul ve Pulculuk Hakkında BİLMEK İSTEDİĞİNİZ HER ŞEY^"+
	"bilgi@efilateli.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)