<!--

var NumTestimonials = 11;

function mod(divisee,base)
{
	return Math.round(divisee - (Math.floor(divisee/base)*base));
}

function DisplayTestimonial()
{
	var curr = new Date();
	var secs = curr.getSeconds();
	var t = mod(secs, NumTestimonials) + 1;
	
	document.write("<i>\"");

	if (t == 1)
	{
		document.write("Being a highly skilled and motivated Software Engineer, ");
		document.write("he has produced the highest quality software and graphical ");
		document.write("user interfaces in the, often short, timescales we have imposed on him.");
	}
	else if (t == 2)
	{
		document.write("... has also demonstrated his skills with Networking and ");
		document.write("Web page design ... creating an excellent remote access ");
		document.write("system for our products.");
	}
	else if (t == 3)
	{
		document.write("Being motivated, hard working and having great pride in his work, ");
		document.write("he requires the minimum of supervision and can be left to his tasks.");
	}
	else if (t == 4)
	{
		document.write("Having a sound academic background and a number of years of ");
		document.write("solid industrial &amp; commercial experience, he will be an ");
		document.write("asset to any project he is involved with.");
	}
	else if (t == 5)
	{
		document.write("He has worked on many different aspects of the project ... ");
		document.write("and contributed enormously to their success");
	}
	else if (t == 6)
	{
		document.write("Being motivated, hard working and having great pride in his work, ");
		document.write("he requires the minimum of supervision and can be left to his tasks.");
	}
	else if (t == 7)
	{
		document.write("He is adaptable and had no problem writing his code to conform to ");
		document.write("our company coding standards. He gets on very well with his peers ");
		document.write("and superiors. He is a well respected and a very sociable person."); 
	}
	else if (t == 8)
	{
		document.write("Keith was responsible for the detailed design of the module which ");
		document.write("has proved extendable and maintainable.");
	}
	else if (t == 9)
	{
		document.write("Keith’s approach to the job, his involvement and relationships with ");
		document.write("others in the project team and his technical skills are all of the ");
		document.write("highest order.");
	}
	else if (t == 10)
	{
		document.write("He is a true IT professional in every sense.");
	}
	else if (t == 11)
	{
		document.write("I have no hesitation whatsoever in highly recommending Keith to any ");
		document.write("prospective employer as a first class, highly skilled and professional ");
		document.write("software developer.");
	}
	
	document.write("</i>\"<br><br>");
	document.write("<font size=\"1\">- genuine client testimonial</font>");
}

//-->
