//Smiley toevoegen bij reacties
function Smiley(Bericht)
{
  document.getElementById("Bericht").value  = document.getElementById("Bericht").value + Bericht;
  document.getElementById("Bericht").focus();
}

function ControleerReactieLengte(Controle)
{
	var Inhoud;
	var Lengte;
	Inhoud = document.getElementById(Controle).value;
	Lengte = document.getElementById(Controle).value.length;
	
	if (Lengte > 750)
		document.getElementById(Controle).value = document.getElementById(Controle).value.substr(0,750)
		
	document.getElementById(Controle).focus();	
}

function popup(url,winName,W,H,X,Y) 
{
	X = 0;
	Y = 0;

	winprops = 'height='+H+',width='+W+',top='+X+',left='+Y+'';

	win = window.open(url, winName, winprops);
	if (parseInt(navigator.appVersion) >= 4)
		win.window.focus();
}

function Mouse_Over(Menu_ID)
{
	document.getElementById(Menu_ID).style.display = 'Block';
}

function Mouse_Out(Menu_ID)
{
	document.getElementById(Menu_ID).style.display = 'None';
}

