function popup (purl, pname, iw, ih)
{
	window.open(purl, pname, 'width='+iw+',height='+ih+',scrollbars=yes, left=150, top=150');
}


/***********************************************
* Textarea Maxlength script- © Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for legal use.
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

function ismaxlength(obj)
{
	var mlength=obj.getAttribute? parseInt(obj.getAttribute("maxlength")) : ""
	if (obj.getAttribute && obj.value.length>mlength)
	obj.value=obj.value.substring(0,mlength)
}

function alertFlag(reactionId, articleId)
{
	window.alert("Bedankt. We hebben je melding over deze reactie ontvangen.")
	window.location = "index.php?pageId=playblog&article=" + articleId + "&flag=" + reactionId;
}