function closeCustomWindow(div)
{
	new Effect.Fade( 'Duits_blok', {	duration:2} );
	
	try {
	$('flashert').style.display = "block";
	}
	
	catch(e) { }
	//document.getElementById(div).style.display = "none";
}

function getInfo(id)
{
	params = new Object(); 			
	params.id = id;
										
	/* JSMX action */ 
	http( 'POST' , 'http://rotsenwater.nl/site/www/cfcs/CustomContent.cfc?method=customContent' , getInfoResponse , params );		
	
}

function getInfoResponse(r)
{
	$('Duitse_content').innerHTML = '' ;
	
	
	for( i=0; i<r.content_nid.length; i++ )
		{
			$('Duitse_content').innerHTML = r.content_stext[i];
		}
	
	new Effect.Appear( 'Duits_blok', {	duration:2} );
	
	try {
		$('flashert').style.display = "none";
	}
	catch(e) { }
}

