
function validatorimage()
{
	this.write=validatorimage_write;

	this.question = '2 + 2 =';


	this.answer = '4'; 
}

function validatorimage_write()
{
document.write('<INPUT type="hidden" name="validatorkey" value="' + this.answer + '"></INPUT>');
document.write('<p><span style="font-size:1.6em; color:#008080; font-style:Times,serif">' + this.question + '</span></p>');

document.write('<P>Please give the answer to the above calculation in the box below.</P>');

document.write('<INPUT type="text" name="validator" value=""></INPUT>');






}