function checkBacklink()
{
	try 
	{
		var as = document.getElementsByTagName('a');
	
		var foundBacklink = false;
		for(var i = 0; i < as.length; ++i)
		{
			if(as[i].innerHTML.length < 3) continue;
			
			if(		as[i].href == 'http://www.makecloud.com/' 
				|| 	as[i].href == 'http://www.makecloud.com/index.html'
				|| 	as[i].href == 'http://www.makecloud.com/backlinks_widget.html')
			{
				foundBacklink = true;
				break;
			}
		}
		
		if( !foundBacklink )
			document.getElementById('force_mc_backlink').innerHTML = "<a href='http://www.makecloud.com'> Make your own tag cloud! </a>";
		
	} catch (e) {}
}

try{setTimeout('checkBacklink()', 3000);}
catch(e){}

document.write('Failed to parse RSS file. (Undeclared entity error at line 94, column 114)<p>');document.write("<a href='http://feedvalidator.org/check.cgi?url=http%3A%2F%2Fwww.erenieuws.nl%2Frssgoed.php'>Check with feedvalidator.org</a>");