function Arrayy() { return this; }

var title = new Arrayy();
var date = new Arrayy();
var location = new Array();

//POSTS ENTERED BELOW. EACH POST IS COMPOSED OF TWO ARRAYS: THE TITLE AND THE LINK TO THE FULL STORY.

title[0] = "Battle Monument" ;
date[0] = "5.03";
location[0] = "index.htm";

title[1] = "Wide Open Spaces" ;
date[1] = "8.02";
location[1] = "index_8-02.htm";

//NUMBER OF POSTS. INCREASE NUMBER WHEN ADDING A NEW POST
var num_posts = 2;

//DISPLAY FUNCTION FOR ARTICLES BOX
function newspost() { 
var counterposts = 0 ;
while (counterposts < num_posts ) {
	document.write("<img src=img/iconp.gif width=16 height=18 align=absmiddle> <a href=" + location[counterposts] + "> " + title[counterposts] + "</a> | " + date[counterposts] + "<br><br>");
	counterposts = counterposts + 1; 
	}
}	

