
function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		Banner_MailAddress_over = newImage("images/Banner_MailAddress-over.gif");
		preloadFlag = true;
	}
}


function rand() {
var r_text = new Array ();
r_text[0] = "\"DART delivers a customised, intelligent, \
one source reporting solution for the Council's contact centre \
equipping us to track, predict and respond to fluctuations in \
customer demand, leading to improved service levels, high quality and agent productivity.\"\
|Liz Hawkins| Contact Centre Manager, Broxtowe Borough Council.";

r_text[1] = "\"DART is beginning to provide us with a more efficient and cost-effective \
way of accessing information from across the authority. The benefits of \
having more streamlined and automated reporting processes are already being realised, \
and a useful side-effect of the implementations has been the identification \
of data quality issues in underlying systems.\"\
|Tom Jackson| Senior e-Gov Projects Officer, Hertsmere Borough Council.";

r_text[2] = "\"I was surprised how quickly DART was implemented and \
providing useful information. It's saved me time I used to spend \
on Telephony reporting problems. Alphametrics keep on top of the \
issues and are providing excellent support.\"\
|Christine Marsh| ICT Manager, Mansfield District Council.";

r_text[3] = "\"I am looking to use the DART package strategically \
to provide a comprehensive Business Intelligence tool which will \
allow us to leverage our data assets across the Authority, realize \
efficiencies in data analysis and improve the quality of information \
and services we provide to our customers.\"\
|Darren Maycock| ICT Support Manager, Broxtowe Borough Council.";

var i = Math.round(3*Math.random());
return(r_text[i]);
}

