// JavaScript Document
function right(e) {
if (navigator.appName == 'Netscape' && 
(e.which == 3 ||e.which == 2))

return false;
else if (navigator.appName == 'Microsoft Internet Explorer' && 
(event.button == 2 ||event.button == 3)) {
alert("Tato funkce není prístupná.");
return false;
}
return true;
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;

function selcheck(el,hodn)
{
	el.disabled='true';
	if(el.value==hodn) 
		{el.className='seldobre';
		}
	else 
		{el.className='selchyba';document.body.spatne.value++;
		alert("To je chyba!!!");
		};
		
	
	skore = parseInt (document.body.spatne.value);
	if(document.body.spatne.value>7){skore=9};
	hodnoceni = new Array("1", "1-", "2", "2-", "3", "3-", "4", "4-", "5", "5");
	document.body.score.value= hodnoceni[skore]; 	
	}
//  End -->
