<!--
// Status-line ticker by Dave Methvin, Windows Magazine
// May be used/modified if credit line is retained
// CHANGE THESE TO ALTER THE SCROLL SPEED
ScrollSpeed = 100;  // milliseconds between scrolls
ScrollChars = 1;    // chars scrolled per time period
function SetupTicker() {
  // add space to the left of the message

  msg = "                                                                                                                                                   ";
  msg +="OMAC Rates  . . . .";
  msg +="6 months (Convertible): " + myshowrate("OMAC","6Month")+ "% . . . .   ";
  msg +="1 year: " + myshowrate("OMAC","1Year")+ "% . . . .   ";
  msg +="2 year: " + myshowrate("OMAC","2Year")+ "% . . . .   ";
  msg +="3 year: " + myshowrate("OMAC","3Year")+ "% . . . .   ";
  msg +="4 year: " + myshowrate("OMAC","4Year")+ "% . . . .   ";
  msg +="5 year: " + myshowrate("OMAC","5Year")+ "% . . . .   ";
  msg +="7 year: " + myshowrate("OMAC","7Year")+ "% . . . .   ";
  msg +="10 year: " + myshowrate("OMAC","10Year")+ "% . . . .   ";
  msg +="Variable rate (Convertible): " + myshowrate("OMAC","Variable")+ "% . . . .   ";
  msg +="Rates are subject to change without notice. . . .   ";
  msg +="Need to build your credit rating first?  Apply on-line for Credit Builder Guaranteed Visa... ";
  
//ADDED BY BRANDON ST. AMAND - JUNE 9 2005

msg = "                                                                                                                                                   ";
msg +="Interest rates are at 50 year low. $150,000 mortgage costs under $720 per month principle & interest (OAC). Refinance now & save   -   Call your local office for special offers"

//END ADDED BY BRANDON



  // this starts the ticker
  RunTicker();
}
function RunTicker() {
 // window.setTimeout('RunTicker()',ScrollSpeed);
  //window.status = msg;
  //msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);
}
// Start the ticker code
SetupTicker();
<!-- end -->

		
