function controlPlayer(file) {
	thisMovie("mp3player").jsControl('load',file);
	thisMovie("mp3player").jsControl('pause');
}

function thisMovie(movieName) {
    if (navigator.appName.indexOf("Microsoft") != -1) {
        return window[movieName]
    }
    else {
        return document[movieName]
    }
}

function oc(what, prefix) {
	if (document.getElementById("LNC_"+what).style.display == "block")
		document.getElementById("LN_"+what).style.backgroundImage = "url(/images/template/"+prefix+"down.jpg)"
	else
		document.getElementById("LN_"+what).style.backgroundImage = "url(/images/template/"+prefix+"up.jpg)"
}

function echoSpan(what) {			
	if( document.getElementById("span_"+what).style.backgroundImage == "url(/images/template/navi_arrow_down.gif)") {
		document.getElementById("span_"+what).style.backgroundImage = "url(/images/template/navi_arrow_up.gif)"
	}
	else if ( document.getElementById("span_"+what).style.backgroundImage == "url(/images/template/navi_arrow_up.gif)") {
		document.getElementById("span_"+what).style.backgroundImage = "url(/images/template/navi_arrow_down.gif)"
	}
	else if( document.getElementById("span_"+what).style.backgroundImage == "") {
		document.getElementById("span_"+what).style.backgroundImage = "url(/images/template/navi_arrow_up.gif)"
	}
}

function ocMain(what, prefix) {
	$("#LNM_"+what).click(function() {
		if (document.getElementById("LNC_"+what).style.display == "block")
			document.getElementById("LN_"+what).style.backgroundImage = "url(/images/template/"+prefix+"down.jpg)"
		else
			document.getElementById("LN_"+what).style.backgroundImage = "url(/images/template/"+prefix+"up.jpg)"
		$("#LNC_"+what).slideToggle("fast")
		return false
	})
}

function ocSpan(what) {
	$("#span_"+what).click(function() {
		if( document.getElementById("span_"+what).style.backgroundImage == "url(/images/template/navi_arrow_down.gif)") {
			document.getElementById("span_"+what).style.backgroundImage = "url(/images/template/navi_arrow_up.gif)"
		}
		else if ( document.getElementById("span_"+what).style.backgroundImage == "url(/images/template/navi_arrow_up.gif)") {
			document.getElementById("span_"+what).style.backgroundImage = "url(/images/template/navi_arrow_down.gif)"
		}
		else if( document.getElementById("span_"+what).style.backgroundImage == "") {
			document.getElementById("span_"+what).style.backgroundImage = "url(/images/template/navi_arrow_up.gif)"
		}
		$("#LN3_"+what).slideToggle("fast")
		return false
	})
}
	