               var msg=new Array()
               msg[0]="Check News Page for Latest World and Trading News!            "
               msg[1]="Free Advanced or Ultra site for 6 months if you sign by February 15, 2008!          "
               msg[2]="50% of Banner on Advanced or Banner on Ultra site for 12 months if you sign by February 15, 2008!         "
               msg[3]="Free Simple site for 12 months if you sign by February 15, 2008!        "
	       msg[4]="This message brought to you by<br>www.amcan-impex.com        "
                // This sets the speed at which the letters of the message are displayed
               speed=100
               a=0
               temp=""
               arrlen=msg.length
               i=0
               function Scrollbox()
                    {
                      if(i>=arrlen)
                        {i=0}
                      len=msg[i].length
                      temp=temp+msg[i].substr(a,1)
                      /* If you want a different font and color then change it here in Both places */
                      if(document.getElementById)
                        {
                         elm=document.getElementById("newstext")
                         elm.innerHTML="<FONT face='Arial' color='darkblue'><b>"+temp+"</b></FONT>"
                        }
                      else
                        {
                         if(document.layers)
                           {
                            document.scrolltext.document.write("<FONT face='Arial' color='darkblue'><b>"+temp+"</b></FONT>")
                            document.scrolltext.document.close()
                           }
                        }
                      a++
                      if(a<len)
                        {counts=setTimeout("Scrollbox()",speed)}
                      else
                        {
                         a=0
                         if(document.getElementById)
                           {elm.innerHTML=" "}
                         else
                           {
                            document.scrolltext.document.write(" ")
                            document.scrolltext.document.close()
                           }
                         temp=""
                         i++
                         counts=setTimeout("Scrollbox()",speed)
                        }
                      }
