// JavaScript Document
function testform()
{var score=0;
var answers=0;
if ((document.tajik.duusti.value=="friend")||(document.tajik.duusti.value=="Friend")) 
	{score = score + 1}

if (document.tajik.duusti.value!="") 
	{answers = answers + 1}

if ((document.tajik.hubi.value=="good")||(document.tajik.hubi.value=="Good"))
	{score = score + 1} 

if (document.tajik.hubi.value!="")
	{answers = answers + 1} 

if ((document.tajik.hamsoaj.value=="neighbor")||(document.tajik.hamsoaj.value=="Neighbor"))
	{score = score + 1} 

if (document.tajik.hamsoaj.value!="")
	{answers = answers + 1} 

if ((document.tajik.sumo.value=="your")||(document.tajik.sumo.value=="Your"))
	{score = score + 1} 

if (document.tajik.sumo.value!="")
	{answers = answers + 1} 

if (answers==4) 
	{document.tajik.scoreoutput.value = score + " out of 4."}
	else 
	{document.tajik.scoreoutput.value = ""}
	
if (answers==0) {document.tajik.evaluation.value = "Oops!"}
if (answers==1) {document.tajik.evaluation.value = "Good start!"}
if (answers==2) {document.tajik.evaluation.value = "Keep going!"}
if (answers==3) {document.tajik.evaluation.value = "One more!"}
if (answers==4) {document.tajik.evaluation.value = "Check your spelling."}
if (score==4) {document.tajik.evaluation.value = "Congratulations!";
				document.tajik.scoreoutput.value = score + " out of 4!";
				window.location="certificate.htm"}
}