// JavaScript Document
<!--
function addValue(text)
{
	document.kameraSimulator.tINTexact.value=text;
}

function checkValues(lang)
{
	x = document.kameraSimulator.xPix.value;
	y = document.kameraSimulator.y.value;
	w = document.kameraSimulator.w.value;
	h = document.kameraSimulator.h.value;
	
	if((parseFloat(x)+parseFloat(w))>1024)
	{
		if(lang == 'de'){
			alert("Die Summe von x und w darf nicht grösser als 1024 sein.");
		}else{
			alert("The sum of x and w must not exceed 1024.");
		}
	}
	
	if((parseFloat(y)+parseFloat(h))>1024)
	{
		if(lang == 'de'){
			alert("Die Summe von y und h darf nicht grösser als 1024 sein.");
		}else{
			alert("The sum of y and h must not exceed 1024.");
		}
	}
}

//-->
