function setDivContent($div_id,$text_str) {
	var div = document.getElementById($div_id);
	div.innerHTML = $text_str;
}

function showEpisodeInfoItem($title_str, $content_str) {
	var targetElement = document.getElementById("body_contents_home_left_infoItem");
	targetElement.style.display = "block";
	if($title_str == "null") $title_str = "";
	if($content_str == "null") $content_str = "";
	targetElement.innerHTML = "<div class='padding_18'>" + $content_str + "</div>";
}

function getSWF(movieName) {
    if (navigator.appName.indexOf("Microsoft") != -1) {
        return window[movieName];
    } else {
        return document[movieName];
    }
}

function playVideo() {
	var flashVideoPlayer = getSWF("flash_content");
	flashVideoPlayer.playVideo();
}