﻿
/***********************************
            Directly Play
************************************/
var isIE = window.navigator.appName == "Microsoft Internet Explorer";


/*------------------------------------------------------

																							
------------------------------------------------------*/
function changeSource( strSource ) 
{
	//alert("[" + strSource + "]"); return false;	
    	var s;
		var scrn_width  = 480;
		var scrn_height = 360;

  s="<div> <object id=\"WMPlayer\" width=\""+scrn_width+"\" height=\""+scrn_height+"\" classid=\"CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95\" standby=\"Please Wait ...\" type=\"application/x-oleobject\"> ";
  s+="<param name=\"FileName\" value=\""+strSource+"\"> ";
  s+="<param name=\"AutoStart\" value=\"true\"> ";
  s+="<param name=\"AutoPlay\" value=\"1\"> ";
  s+="<param name=\"PlayCount\" value=\"999\"> ";
  s+="<param name=\"FullScreen\" value=\"true\"> ";
  s+="<param name=\"enableContextMenu\" value=\"false\"> ";
  s+="<param name=\"ShowControls\" value=\"true\"> ";
  s+="<param name=\"ShowDisplay\" value=\"false\"> ";
  s+="<param name=\"ShowStatusBar\" value=\"true\"> ";
  s+="<param name=\"ShowTracker\" value=\"false\"> "; 
  s+="<param name=\"wmode\" value=\"opaque\" > ";
  s+="<param name=\"Volume\" value=\"50\"> ";
  
  s+="<embed type=\"application/x-mplayer2\" src=\""+strSource+"\" name=\"WMPlayer\" wmode=\"opaque\"  width=\""+scrn_width+"\" height=\""+scrn_height+"\" AutoStart=\"1\" AutoPlay=\"1\" PlayCount=\"999\" FullScreen=\"1\" EnableContextMenu=\"0\" ShowControls=\"1\" ShowDisplay=\"0\" ShowStatusBar=\"1\" ShowTracker=\"0\" Volume=\"0\" bgcolor=\"#000000\"></embed> ";
  s+="</object>";
  s+="</div>"
    document.getElementById("WMPlayer").innerHTML=s;
    //scrollTo(0,100);
}


//
 function lable(Ten)
    {   
       
        
        document.getElementById("name").innerHTML=Ten;     
        
      
    }

