function MM_openBrWindow(theURL,winName,features) { //v2.0
 window.open(theURL,winName,features);
}

function addRating(rating,filmid) {
 var element = document.getElementById('ratebox')
 AjaxRequest.post (
   {
	   'url':'inc/ratefilm.inc.php?id='+filmid+'&rate='+rating
		,'onLoading':function() {element.innerHTML='Verzenden...';}
		,'onSuccess':function(req){element.innerHTML=req.responseText;}

	 }
	);
 }

function checkname(name) {
 var element = document.getElementById('namebox')
 AjaxRequest.post (
   {
	   'url':'inc/checkname.inc.php?name='+name
		,'onLoading':function() {element.innerHTML='Bezig met controleren...';}
		,'onSuccess':function(req){element.innerHTML=req.responseText;}

	 }
	);
 }