//Copyright 2009 ATLASDW, All rights reserved.

function HTML_Show_Capitulos_Player(ID,Audio){
	document.getElementById("Capitulos").style.display = 'none';
	document.getElementById('CapitulosContainer').innerHTML = '<div align="center" style="height:182px; padding-top:150px;"><div><img src="img/ajax/ajax-loader-big.gif" width="32" height="32" alt="Loading" /></div></div>';
	var pos_url = 'php/ajax/ajax.show_capitulos_player.php';

	var xmlHttp = null;
	if (window.XMLHttpRequest) {
	  xmlHttp = new XMLHttpRequest();
	}else{
	  if (window.ActiveXObject) {
		 xmlHttp = new ActiveXObject('MSXML2.XMLHTTP.3.0');
	  }
	}

	if (xmlHttp){
		xmlHttp.onreadystatechange = function(){
			if (xmlHttp.readyState == 4 && (xmlHttp.status == 200 || xmlHttp.status == 304)){
				document.getElementById('CapitulosContainer').innerHTML = xmlHttp.responseText;
				
			}
		}
		xmlHttp.open('GET', pos_url +'?Code='+ID+'&Audio='+Audio,true);
		xmlHttp.send(null);
	}
}

function HTML_Show_Player(Audio,Capitulo,Titulo){
	document.getElementById('PlayerObject').innerHTML = '<object width="360" height="340"><param name="movie" value="reproductor.swf?mp3='+Audio+'&Capitulo='+Capitulo+'&Titulo='+Titulo+'"></param><param name="wmode" value="transparent"></param><embed src="reproductor.swf?mp3='+Audio+'&Capitulo='+Capitulo+'&Titulo='+Titulo+'" type="application/x-shockwave-flash" wmode="transparent" width="360" height="340"></embed></object>';
}

function HTML_Hide_Capitulos_Player(){
	document.getElementById("Capitulos").style.display = 'block';
	document.getElementById('CapitulosContainer').innerHTML = '';
}


