// JavaScript Document

function capchechk(thisform)
{
	//alert(thisform.captext.value);
	if(thisform.captext.value=="")
		{
			alert("Please enter text as in the picture, it cannot be blank");
			thisform.captext.focus();
			return false;
		}	
		else if(thisform.captext.value!=thisform.ftext.value)
		{
			alert("Please enter the text as it appears in the picture");
			thisform.captext.focus();
			return false;
		}
		
		return true;

}


