
function Switch(iTestimonial) {
	if ( document.getElementById('t'+iTestimonial) != null ) {
		document.getElementById('t'+iTestimonial).style.visibility = 'hidden';
		window.setTimeout('ShowNext('+iTestimonial+')', 200);
	}
	return false;
}

function ShowNext(iTestimonial) {
	iTestimonial = iTestimonial + 1;
	if ( document.getElementById('t'+iTestimonial) == null ) {
		iTestimonial = 0;
	}
	document.getElementById('t'+iTestimonial).style.visibility = 'visible';
	window.setTimeout('Switch('+iTestimonial+')', 11000);
	return false;
}

function AdresVerhuller(sVerhaal) { 
	location.href = 'ma'+'ilto:'+sVerhaal.replace('%', '@');
	return false;
}
