/*
This is the for the news caption on the left side of the bottom of the page
*/
<!-- hide script from non-javascript-enabled browsers

news_caption_left_paragraph = new Array();
var news_caption_left="";

//--------------------------------------------------------------------------------------------------------- 
// Just put your data in between the double quotes in news_caption_left_paragraph[X] - where X is 1 through 10
// 
// To add data use:									news_caption_right_paragraph[XXXXXXXX] = "Hello World!";
// where [XXXXXXXX] is the paragraph number and all of your paragraph is to be put into ONE line
// in between the double quotes ""
// 
// EXAMPLE:	
// news_caption_right_paragraph[1] = "Hello World!";
// news_caption_right_paragraph[2] = "";
// news_caption_right_paragraph[3] = "";
// news_caption_right_paragraph[4] = "";
// news_caption_right_paragraph[5] = "";
// news_caption_right_paragraph[6] = "";
// news_caption_right_paragraph[7] = "";
// news_caption_right_paragraph[8] = "";
// news_caption_right_paragraph[9] = "";
// news_caption_right_paragraph[10] = "";
//
// NOTE: to add vertical spacing use:			news_caption_right_paragraph[X] = " "; <-- notice space
// where [X] is the paragraph number (1 - 5)
//--------------------------------------------------------------------------------------------------------- 
news_caption_left_paragraph[1] = "WCI recently completed a $1,700,000 buildout for ADP. This project was a 30,000 sq. ft. office renovation with independent 24/7 forced air chilled water cooling & 500 KW generator backup for critical and data processing rooms.";
news_caption_left_paragraph[2] = "<BR>";
news_caption_left_paragraph[3] = "";
news_caption_left_paragraph[4] = "";
news_caption_left_paragraph[5] = "";
news_caption_left_paragraph[6] = "";
news_caption_left_paragraph[7] = "";
news_caption_left_paragraph[8] = "";
news_caption_left_paragraph[9] = "";
news_caption_left_paragraph[10] = "";
//--------------------------------------------------------------------------------------------------------- 

for (var i=1;i<=10;i++)
{
	if (news_caption_left_paragraph[i]!="")
	{
		news_caption_left = "<p>" + news_caption_left + news_caption_left_paragraph[i] + "</p>";
	}
}
document.write(news_caption_left);
// stop hiding --> -->