function showVideo (show) {
	if (show) {
		// if (!document.getElementById ('player_api')) {
		//	flowplayer("player", "../flash/flowplayer-3.2.4.swf");
		// }
		document.getElementById ('player').style.display = 'block';
		document.getElementById ('image').style.display = 'none';
		document.getElementById ('imgLink').setAttribute ('style', 'font-weight: bold;');
		document.getElementById ('videoLink').setAttribute ('style', 'font-weight: normal;');
	} else {
		document.getElementById ('player').style.display = 'none';
		document.getElementById ('image').style.display = 'block';
		document.getElementById ('imgLink').setAttribute ('style', 'font-weight: normal;');
		document.getElementById ('videoLink').setAttribute ('style', 'font-weight: bold;');
	}
}


