﻿var today = new Date();
      <!-- begin ticker code
      var max=0;
      function textlist()
      {
      max=textlist.arguments.length;
      for (i=0; i<max; i++)
      this[i]=textlist.arguments[i];
      }
	  function linklist()
	  {
	  max=linklist.arguments.length;
      for (i=0; i<max; i++)
      this[i]=linklist.arguments[i];
	  }
      tl=new textlist
      ( 
	  <!--Put ticker text here, each line, except last, ending with a comma-->
	  "Namo Tassa Bhagavato Arahato Sammāsambuddhassa",
	  "Tham gia sinh hoạt trực tuyến room Pháp Cú Kinh Chuyên Đề(7pm-9pm Vietnam) »", 
	  "Tham gia sinh hoạt trực tuyến room Diệu Pháp (9pm-11pm Vietnam) »",
	  "Xem trang Phim vừa được  hình thành »", 
	  "Xem trang sách nói Đại Tạng Kinh »",
	  "Lưu trữ toàn bộ trang LotusMedia »",
      "Xem Thư Viện Hình Ảnh (Bình Anson biên tập)»"
<!--End of ticker text-->


      );
	  ll=new linklist
      ( 
	   <!-- List links in same order. List between inverted commas. A comma after each except the last one. If no link, put in "#"-->
       "#",
       "../../unicode/LM/PCKCD.htm",
       "http://express.paltalk.com/index.html?gid=1045683694",
       "../../unicode/LM/LMPhim.htm",   
       "../../unicode/LM/LMPhapAm.htm",
       "http://cid-0aa13e247721423e.skydrive.live.com/browse.aspx/.Public",
       "http://budsas.lotusmedia.net"
	   
	    <!-- end links-->
	    );
	   var x=0; pos=0;
      var l=tl[0].length;
	  function textticker()
      {
	  var tickcontent =document.getElementById("tickdiv");
	  
	  tickcontent.innerHTML = tl[x].substring(0,pos)+"_";
	  tickcontent.href =  ll[x];
       if(pos++==l) { 
	   pos=0; 
	   setTimeout("textticker()",2000); x++;
        if(x==max) x=0; l=tl[x].length; } else
        {setTimeout("textticker()",100);}
      }