rigtig=0;
rigtige=0;
svarialt=0;
procent=0;

function svar(rigtig,navn,tekst)
	{
	billede="../spot/"+navn+".gif";
if (rigtig==1) document.form2.svar.value="RIGTIGT SVAR!";
if (rigtig==0) document.form2.svar.value="forkert svar!";

	document.billedfelt.src=billede;
	document.form1.svartekst.value=tekst;
	document.form2.svartekst2.value=tekst;
rigtige=rigtige+rigtig;
svarialt=svarialt+1;
procent=rigtige/svarialt*100;

document.form2.svarantal.value=svarialt;
document.form2.rigtige.value=rigtige;
document.form2.procent.value=procent;
	}
	

