/* Toggle synligheden af et block element med ID=theNo */
function ToggleBlock(theNo) {
	if (theNo==null ) return;

	aElem = document.getElementById(theNo);

	if (aElem==null) return;

	if (aElem.className == 'block_hide')
		aElem.className = 'block_show';
	else
		aElem.className = 'block_hide';
}


/* Vis block elementet med ID=theNo */
function ShowBlock(theNo) {
	if (theNo==null ) return;

	aElem = document.getElementById(theNo);

	if (aElem==null) return;

	aElem.className == 'block_show';
}

/* Skjul block elementet med ID=theNo */
function HideBlock(theNo) {
	if (theNo==null ) return;

	aElem = document.getElementById(theNo);

	if (aElem==null) return;

	aElem.className == 'block_hide';
}


/* check at datoen er på formatet dd-mm-yyyy */
function validerDatoFormat(theDato) {

	var aExp = new RegExp(/^\s*\d{2}-\d{2}-\d{4}\s*/);
  	var aTest=aExp.test(theDato);
  	return aTest;
}

function validerSoeg(theSoeg)
{
	if (theSoeg.length < 3) {
		alert("Søge strengen skal være mindst 3 tegn");
		return false;
	}
	return true;				
}

