function emotie(tag, formulier, veld) 
{ 
	var emoticon = ' ' + tag;
	document[formulier][veld].value += emoticon;
	document[formulier][veld].focus();
}		

function relocate(url)
{
	window.location = url;
}

function confirmation(bericht, url)
{
	if(confirm(bericht))
	{
		window.location.href = url
	}
}

function check(eid)
{
	document.getElementById(eid).checked = true;
}

function toggle(itemid)
{
	if(document.getElementById(itemid).style.display == 'none')
	{
		document.getElementById(itemid).style.display = '';
	}
	else
	{
		document.getElementById(itemid).style.display = 'none';
	}
}
