
function GetFileType2(afilename){
	afilename=afilename.toLowerCase();
	if( afilename.lastIndexOf(".mp3")!=-1){
		return "flash";
	}else if( afilename.lastIndexOf(".wma")!=-1){
		return "wmp";
	} 
	return "flash";
}
function GetMediaPlayerWindow(strURL,intWidth,intHeight){ 
	var strID=Math.floor(Math.random()*1000);
	var strType=GetFileType2(strURL);
	var IconUrl="";
	var MediaName="";
	var controlBarHeight=0;  
	switch(strType) { 
		case 'flash':
			IconUrl="http://www.hjenglish.com/images/icon/swf.gif";
			MediaName="Shockwave Flash 鏂囦欢";
			controlBarHeight=0;
			 break; 
		default:
			IconUrl="http://www.hjenglish.com/images/icon/wmp.gif";
			MediaName="Windows Media Player鏂囦欢";
			controlBarHeight=85;
	} 
	var strHtml=""; 
	strHtml+="		<span id='_player"+ strID +"' style='text-align:center;cursor:pointer;width:"+ (intWidth) +"px;'>";
	strHtml+="		<a href='###' onclick='ShowMedia2(\"_player"+ strID +"\", \""+ strURL +"\", "+ (intWidth) +", "+ (intHeight+controlBarHeight) +");' style='background-image:none;'>"; 
	strHtml+="		<img src='images/icon-play.png' style='cursor:pointer;padding-bottom:2px;' alt='点击播放' title='点击播放' align='absmiddle' border='0' onclick='ShowMedia2(\"_player"+ strID +"\", \""+ strURL +"\", "+ (intWidth) +", "+ (intHeight+controlBarHeight) +");'/ > listen</a></span>";
	strHtml+="		<a href='"+strURL+"' style='background-image:none;'><img src='images/icon-download.png' style='cursor:pointer;' alt='点击下载' title='点击下载' align='absmiddle' border='0'> download</a> ";
	document.write(strHtml); 
}
function ShowMedia2(strID,strURL,intWidth,intHeight) { 
	var objDiv=document.getElementById(strID);
	if (!objDiv) return false;   
	objDiv.innerHTML=makemediaCode2(strURL,intWidth,intHeight); 
	return false;
}
function makemediaCode2(strURL,intWidth,intHeight){
	var strHtml;
	var strType=GetFileType2(strURL);
	switch(strType) { 
		case 'flash':
			strHtml="<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' width='"+intWidth+"' height='"+intHeight+"' align='absmiddle'><param name='movie' value='http://bulo.hjenglish.com/media/MiniPlayer.swf'/><param name='quality' value='high' allowscriptaccess='always'  /><param name='flashvars' value='_media="+strURL+"&autoStart=true&backColor=76B64D&frontColor=D6FFAC&songVolume=90' /><embed src='http://bulo.hjenglish.com/media/MiniPlayer.swf' quality='high' type='application/x-shockwave-flash' flashvars='_media="+strURL+"&autoStart=true&backColor=76B64D&frontColor=D6FFAC&songVolume=90' allowscriptaccess='always' width='"+intWidth+"' height='"+intHeight+"'></embed></object>";
			break; 
	} 
	return strHtml;
}