function whatsnew(number)
{
var num = number;
var i = 0;
var	 whatsnew = "";
var content = new Array(4);
var picked = new Array(4)

	content[0] = "<a href=\"/newsroom/NMN_Aug1604.pdf\" class=\"nounderline\">\SwiftView Makes Disclosures, Loan Files Paperless</a><br><br> ";
	picked[0] = 0
	content[1] = "<a href=\"/newsroom/announcements/pr2006060506.html\" class=\"nounderline\">\SwiftView and NetUpdate Announce Document Communications Portal</a> <br><br> ";
	picked[1] = 0
	content[2] = "<a href=\"/newsroom/announcements/pr2006041106.html\" class=\"nounderline\">\Use of SwiftView's SwiftSend Electronic Delivery Service up 22%</a><br><br> ";
	picked[3] = 0

	content[3] = "<a href=\"/newsroom/announcements/pr2006032406.html\" class=\"nounderline\">\SwiftView Founder Presents at MBA's National Technology Conference</a></br><br> ";
picked[3] = 0

	while (i < num)
	{
		if(picked[i] != 1)
		{
			whatsnew +=  content[i]; 
			picked[i] = 1
		i++;
		}
	}
	
	return   whatsnew;
}

function cust(number)
{
var num = number;
var i = 0;
var	 cust = "";
var content = new Array(4);
var picked = new Array(4)

	content[3] = "<li><a href=\"/customers/quotes.html#swood\" class=\"nounderline\">\“. . . the single most productive software system our company has implemented in the last twelve months.\”</a></li> ";
	picked[3] = 0
	
	content[1] = "<li><a href=\"/customers/quotes.html#jbishop\" class=\"nounderline\">\“. . . one of the few software applications that worked the first time, and worked as well as advertised.\”</a></li> ";
	picked[1] = 0
	content[2] = "<li><a href=\"/customers/quotes.html#kwilberg\" class=\"nounderline\">\“. . .saves us time, perhaps our most valuable commodity.\”</a></li> ";
	picked[3] = 0

	content[0] = "<li><a href=\"/customers/quotes.html#narnold\" class=\"nounderline\">\“ . . .I'm dumbfounded. [SwiftSend Investor Delivery] is like everything else with SwiftSend. It is too easy to believe!\"</a></li> ";
picked[0] = 0

	while (i < num)
	{
		if(picked[i] != 1)
		{
			cust +=  content[i]; 
			picked[i] = 1
		i++;
		}
	}
	
	return   cust;
}
