var messages_idx = 0;
var messages_max = 5
var messages = new Array(messages_max);

// =========================================================================================
// IMPORTANT NOTES : 
// Only update this section of code...
// This information is used to popoulate the "COACHES" section of this website.  The
// information here, if not entered appropriatly could render this section useless.  All
// that is required to maintain this section of the site is to continue to add additional
// rows to the "coaches" array with the coaches listed as the next in the series
// (i.e. the next higher value).  Below is a listing of the information required for each
// event:
//
// 1) name : this is the coach's name in regular case text
// 2) duties : this is the coach's responsibilities
// 3) img : this it the file name of the coach's photo
// 4) url : this is the URL associated with the coach's bio on the NT Athletics site
// -----------------------------------------------------------------------------------------
messages[0] = new note(	'This site is hands down the best site North Texas has<br />' +
						'going for it. This site does more for NT Football than<br />' +
						'does the official meangreensports.com site does.<br /> - Josh Martin (aka. BIG DAWG)');
					
messages[1] = new note(	'The site looking great very informative and a great<br />' +
						'layout. I\'ve got it book marked and will probably use<br />' +
						'it instead of ESPN for gameday info during the season.<br /> - NTPhiKap99');
					
messages[2] = new note(	'Good stuff! You have a great page. I like<br />' +
						'the layout... Very easy access to the most <br />' +
						'commonly asked NT football questions<br /> - medpilot21');

messages[3] = new note(	'I think that Rick Yeatts is<br />' +
						'one of the best sports<br />' +
						'photographers anywhere, bar none.<br /> - GrayEagleOne');

messages[4] = new note(	'Great website. All you need to know<br />' +
						'at a quick glance and all the links you<br >' +
						'need one click away. Great job.<br /> - Daddy Dumpsalot');

messages[5] = new note(	'I didn\'t realize how cool<br />' +
						'the schedule and standings<br />' +
						'section was... I\'m impressed.<br /> - NTPhiKap99');

// =========================================================================================

build_div_messages ();

function note (message) {
	this.message = message;
}

function build_div_messages() {
	document.write("<div id=\"feedback\" style=\"display: none;\">\n");
	for (idx = 0; idx <= messages_max; idx++) {
		wr_message (messages[idx].message);
	}
	document.write("</div>\n");
}

function wr_message (message) {
	document.write("<p style=\"left: 0px;\">\n");
	document.write("	" + message + "\n");
	document.write("</p>\n");
}
