/*############################################################################
This script controls running news in the status bar
############################################################################*/

<!--Hide JavaScript from Java-Impaired Browsers
function isnscroll(hype) {
 var shameless = 100
 var prtspc = " ";
 var col = 1;
 /* You could use array here, but this is easy way to load messages
    Unlike HTML documents, multiple adjoining spaces are preserved */
 var promotional="Great new dial-1 long distance program - learn more right now"
 +"                                        "
 +"Best rates with dial-1 telephone services distributed by Long Distance POST"
 +"                                        "
 +"Low international telephone rates by LDPost"
 +"                                        "
 +"Best calling rates by LD POST to anywhere in the world"
 +"                                        "
 +"No extra charges on your telephone bill with Prepaid Phone Cards"
 +"                                        "
 +"Budget control with Prepaid Telephone Cards"
 +"                                        "
 +"Order your long distance NOW"
 +"                                        "
 +"Get answers on Prepaid Phone Cards"
 +"                                        "
 +"Read LDPOST Privacy policy"
 +"                                        "
 +"Long Distance Plan - Call&Talk"
 +"                                        "
 +"Lowest Rates for Residential customers on international and domestic telephone calls"
 +"                                        "
 +"Very low intrastate rates"
 +"                                        "
 +"You save a lot on your telephone bill with LDPOST services"
 +"                                        "
 +"TOLL-FREE 800 Number - choose the calling plan that fits your needs"
 +"                                        "
 +"Credit phone cards provide a flat domestic rate and it is not a prepaid calling card"
 +"                                        "
 +"Fill out Long Distance Telephone Service Agreement now"
 +"                                        "
 +"Ask about Dedicated inbound/outbound or Dedicated data lines"
 +"                                        ";
 if (hype>shameless) {
  hype--;
  var cmd="isnscroll(" + hype + ")";
  isntimer=window.setTimeout(cmd,shameless);
 }
 else if (hype<=shameless && hype>0) {
  for (col=0;col<hype;col++) {
   prtspc+=" ";
  }
  prtspc+=promotional;
  hype--;
  var cmd="isnscroll(" + hype + ")";
  window.status=prtspc;
  isntimer=window.setTimeout(cmd,shameless);
 }
 else if (hype<=0) {
  if (-hype<promotional.length) {
   prtspc+=promotional.substring(-hype,promotional.length);
   hype--;
   var cmd="isnscroll(" + hype + ")";
   window.status=prtspc;
   isntimer=window.setTimeout(cmd,100);
  }
  else {
   window.status=" ";
   isntimer=window.setTimeout("isnscroll(100)",75);
  }
 }
}
function startit() {
 isntimer=window.setTimeout("isnscroll(100)",500);
}
// Stop Hiding Contents -->