<!--

function checkGbook()
{
	var errorMess = "";
	if (document.frmGbook.strName.value.length < 2)
	{
		document.frmGbook.strName.style.backgroundColor='#FFF0B3';
		errorMess += '# Ditt namn måste innehålla minst 2 tecken.\n';
	}
	else
	{
		document.frmGbook.strName.style.backgroundColor='#FFFFFF';
	}

	if (document.frmGbook.strMess.value.length < 10 || document.frmGbook.strMess.value.length > 500)
	{
		document.frmGbook.strMess.style.backgroundColor='#FFF0B3';
		errorMess += '# Ditt inlägg måste innehålla 10-500 tecken.\n';
	}
	else
	{
		document.frmGbook.strMess.style.backgroundColor='#FFFFFF';
	}
	
	if (document.frmGbook.strCode.value.length < 1)
	{
		document.frmGbook.strCode.style.backgroundColor='#FFF0B3';
		errorMess += '# Du har inte angivit något svar på frågan.\n';
	}
	else
	{
		document.frmGbook.strCode.style.backgroundColor='#FFFFFF';
	}
	
	if (errorMess.length > 1)
	{
		alert(errorMess);
		return false
	}
	else
	{
		return true;
	}
}

// -->