//////////////
//          //
// showFoto //
//          //
//////////////

function showFoto(deFoto, taal) {

	// de foto tonen
	get('l.cgi?a=subFoto&t=' + taal + '&foto=' + deFoto, 'content');
	
	// de terug-knop tonen
	get('l.cgi?a=subTerugShow&t=' + taal + '&voorstelling=' + deFoto.substring(0, 4), 'terug');
	
}

//////////////
//          //
// showPers //
//          //
//////////////

function showPers(voorstelling, taal) {

	// de content tonen
	get('l.cgi?a=subPers&t=' + taal + '&voorstelling=' + voorstelling, 'content');
	
	// de terug-knop tonen
	get('l.cgi?a=subTerugShow&t=' + taal + '&voorstelling=' + voorstelling, 'terug');
	
}

///////////////////
//               //
// showSpeeldata //
//               //
///////////////////

function showSpeeldata(voorstelling, taal) {

	// de content tonen
	get('l.cgi?a=subSpeeldata&t=' + taal + '&periode=nu&voorstelling=' + voorstelling, 'content');
	
	// de terug-knop tonen
	get('l.cgi?a=subTerugShow&t=' + taal + '&voorstelling=' + voorstelling, 'terug');
	
}

//////////////////
//              //
// showEducatie //
//              //
//////////////////

function showEducatie(voorstelling, taal) {

	// de content tonen
	get('l.cgi?a=subEducatie&t=' + taal + '&voorstelling=' + voorstelling, 'content');
	
	// de terug-knop tonen
	get('l.cgi?a=subTerugShow&t=' + taal + '&voorstelling=' + voorstelling, 'terug');
	
}

/////////////
//         //
// Restore //
//         //
/////////////

function restore(voorstelling, taal) {

	// de default info tonen
	get('l.cgi?a=subRestore&t=' + taal + '&voorstelling=' + voorstelling, 'content');
	
	// de terug-knop wegdoen
	get('l.cgi?a=subTerugHide&t=' + taal, 'terug');
	
}