function hideControls(c) {

	var flashElement;
	if ((flashElement = document.getElementById(c)) != undefined) {
		
		if(flashElement.hideControls != undefined) flashElement.hideControls();
	}
}

function showControls(c) {
	var flashElement;
	if ((flashElement = document.getElementById(c)) != undefined) {
		
		if(flashElement.showControls != undefined) flashElement.showControls();
	}
}
