// Description: Kilpanet-sovelluksen funktioita.

// Description:	Sovelluksen lopettaminen.
//
function Lopetus()
{
	if (confirm('Haluatko sulkea sovelluksen?') == true)
		window.location.href = '/Lopetus.aspx';
}

// Description:	Tekstikentän arvon validointi.
//
function ValidoiArvo(element, text, min, max)
{
	var string = Trim(element.value);
	
	if (string.length > 0) // Onko arvo syötetty?
	{
		var value = parseInt(string);
		var isValue = true;
		
		if (isNaN(value)) 
			isValue = false;
		else 
		{
			if ((value < min) || (value > max))
				isValue = false;
		}

		if (!isValue)
		{
			alert(text + ' ' + min + '-' + max + '.');
			element.focus();
		}
	}
}


