function Arrayy() { return this; }

var texty = new Arrayy();
var linky = new Arrayy();

//POSTS ENTERED BELOW. EACH POST IS COMPOSED OF TWO ARRAYS: THE TEXT AND THE LINK TO THE FULL STORY.

texty[1] = "Infotel forms strategic partnership with Seattle-based firm. " ;
linky[1] = "<br>[ <a href=news_partner1.htm>more...</a> ]<br><br>";

texty[0] = "Want to improve your current mystery shopping program? Learn why many programs don't achieve their goals and what you can do to make yours a success.  " ;
linky[0] = "<br>[ <a href=news_msbad.htm>more...</a> ]<br><br>";


texty[2] = " " ;
linky[2] = "<br>[ <a href=news_partner1.htm>more...</a> ]<br><br>"; 
//NUMBER OF POSTS. INCREASE NUMBER WHEN ADDING A NEW POST 
var num_news = 1; 
//DISPLAY FUNCTION FOR NEWS PAGES 
function newsy() { 
var counternews = (num_news - 1); 
while (counternews >= 0 ) { document.write(texty[counternews] + linky[counternews]); 
counternews = counternews - 1; } } 