﻿function mediaplay(files,titlevideo,w,h,p, lr){
	if(files.lastIndexOf(".mp3")!=-1){	
		files=files;//+'&image=/Portals/0/Audio/10.swf';
		mp3audio(files,titlevideo,w,h,p);	
	}
	if(files.lastIndexOf(".flv")!=-1){		
		ViewVideo(files,titlevideo,w,h,p);	
	}
	
}

function mp3audio(files,titlevideo,w,h,p){
	//alert(files);
	//document.getElementById('titlevideo').innerHTML=titlevideo;
	if (w<=0) w=480;
	if (h<=0) h=380;
	//p=false;
	var sFPVideo = new SWFObject("/js/mediaplayer.swf","playlist",''+ w +'',''+ h +'',"7",'/js/expressInstall.swf');
	sFPVideo.addParam("allowfullscreen","true");
	sFPVideo.addParam("wmode","opaque");
	sFPVideo.addVariable("file",'' + files + '');
	sFPVideo.addVariable("displayheight",''+ h-20 +'');
	sFPVideo.addVariable("width",''+ w +'');
	sFPVideo.addVariable("height",''+ h +'');
	sFPVideo.addVariable("backcolor","0x000000");	
	sFPVideo.addVariable("frontcolor","0xCCCCCC");
	sFPVideo.addVariable("lightcolor","0x557722");
	sFPVideo.addVariable("shuffle","false");
	sFPVideo.addVariable("repeat","list");
	sFPVideo.addVariable('autostart',''+ p +'');
	sFPVideo.write("dvMedia");
}

function ViewVideo(files,titlevideo,w,h,p){
	if (w<=0) w=480;
	if (h<=0) h=380;

	var sFPVideo = new SWFObject("/js/mediaplayer.swf","playlist",''+ w +'',''+ h +'',"7");
	sFPVideo.addParam("allowfullscreen","true");
	sFPVideo.addParam("wmode","opaque");
	sFPVideo.addVariable("file",'' + files + '');
	sFPVideo.addVariable("displayheight",''+ h-20 +'');
	sFPVideo.addVariable("width",''+ w +'');
	sFPVideo.addVariable("height",''+ h +'');
	sFPVideo.addVariable("backcolor","0x000000");	
	sFPVideo.addVariable("frontcolor","0xCCCCCC");
	sFPVideo.addVariable("lightcolor","0x557722");
	sFPVideo.addVariable("shuffle","false");
	sFPVideo.addVariable("repeat","list");
	sFPVideo.addVariable('autostart',''+ p +'');
	sFPVideo.write("dvMedia");
}

function mediainfo(title,author,singer,lyric){
	//if(title!=""){document.getElementById('mTitle').innerHTML='<p class="mTitle">' + title +'</p>';}
	if(title!=""){document.getElementById('mTitle').innerHTML='<strong>Ca khúc:</strong> '+title;}
	if(author!=""){document.getElementById('mInfo').innerHTML='<i>Sáng tác:</i> ' + author + ' <br><i>Trình bày:</i> ' + singer;}
	if(lyric!=""){document.getElementById('dvLyric').innerHTML='<b>Lời bài hát: </b><div class="lyric">' + lyric +'</div>';}
	 document.getElementById('dvInfoMedia').style.display = 'block';
}



