function Inschrijven( )
{
	var mail = document.getElementById( 'emailadres' ).value;
	if( IsMail( mail ) )
	{
		window['output_page'] = 'inschrijven';
		sendRequest( window[ 'nieuwsbrief_page' ] + mail );
	}
}

function ZoekenFunctie( )
{
	if( document.getElementById( 'zoeken' ).value != '' )
	{
		document.zoekform.submit( );
	}
	else
	{
		alert( 'Vul een geldige zoekterm in.' );
		return false;
	}
}

function ContentObj( )
{
	return document.getElementById( 'c_middencontent' ) == null ? document.getElementById( 'middencontent' ) : document.getElementById( 'c_middencontent' );
}

function tellafriend( )
{
	document.getElementById( 'tellafriend' ).style.display = 'block';
	ContentObj( ).style.display = 'none';
}

function tellafriendHide( )
{
	document.getElementById( 'tellafriend' ).style.display = 'none';
	ContentObj( ).style.display = 'block';
}

function notificatie( )
{
	document.getElementById( 'notificatie' ).style.display = 'block';
	ContentObj( ).style.display = 'none';
}

function notificatieHide( )
{
	document.getElementById( 'notificatie' ).style.display = 'none';
	ContentObj( ).style.display = 'block';
}
