var movieName = "videoPlayerSWF";

function togglePlayPause() {
	var obj = swfobject.getObjectById("videoPlayerSWF");
	if (obj) {
		obj.togglePlayPause(); // e.g. an external interface call
	}
}

function showOrHighlightMap() {
	var obj = swfobject.getObjectById("videoPlayerSWF");
	if (obj) {
		obj.showOrHighlightMap(); // e.g. an external interface call
	}
}