if(!document.getElementsByTagName){ 
    var urlparse=document.scripts[document.scripts.length-1].src.split("\?"); 
}else{ 
    var scripts=document.getElementsByTagName('script'); 
    var urlparse=scripts[scripts.length-1].src.split("\?"); 
} 

var urlsearch=urlparse[1]; 
var reqs=urlsearch.split("&"); 
var http_get_vars = new Array(); 
for(i=0;i<reqs.length;i++){ //把参数保存到 http_get_vars[] 
    req=reqs[i].split("="); 
    eval("http_get_vars['"+req[0]+"']='"+unescape(req[1])+"';"); 
} 

//得到GET参数的各个值 

var videoPath = http_get_vars['videoPath'];

document.writeln("<TABLE width=450 border=0 align=center cellPadding=0 cellSpacing=0>");
document.writeln("  <TBODY>");
document.writeln("    <TR> ");
document.writeln("      <TD align=middle width=450> <OBJECT id=mPlayer1 type=application\/x-oleobject height=400 ");
document.writeln("      standby=\"Loading Windows Media Player components...\" width=450 ");
document.writeln("      align=absMiddle classid=CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6>");
document.writeln("          <PARAM NAME=\'URL\' VALUE=\'"+ videoPath +"'>");
document.writeln("          <PARAM NAME=\"Album\" VALUE=\"Chu Tian Drgon\">");
document.writeln("          <PARAM NAME=\"rate\" VALUE=\"1\">");
document.writeln("          <PARAM NAME=\"balance\" VALUE=\"0\">");
document.writeln("          <PARAM NAME=\"currentPosition\" VALUE=\"0\">");
document.writeln("          <PARAM NAME=\"defaultFrame\" VALUE=\"\">");
document.writeln("          <PARAM NAME=\"playCount\" VALUE=\"100\">");
document.writeln("          <PARAM NAME=\"autoStart\" VALUE=\"-1\">");
document.writeln("          <PARAM NAME=\"currentMarker\" VALUE=\"0\">");
document.writeln("          <PARAM NAME=\"invokeURLs\" VALUE=\"-1\">");
document.writeln("          <PARAM NAME=\"baseURL\" VALUE=\"\">");
document.writeln("          <PARAM NAME=\"volume\" VALUE=\"100\">");
document.writeln("          <PARAM NAME=\"mute\" VALUE=\"0\">");
document.writeln("          <PARAM NAME=\"uiMode\" VALUE=\"full\">");
document.writeln("          <PARAM NAME=\"stretchToFit\" VALUE=\"0\">");
document.writeln("          <PARAM NAME=\"windowlessVideo\" VALUE=\"0\">");
document.writeln("          <PARAM NAME=\"enabled\" VALUE=\"-1\">");
document.writeln("          <PARAM NAME=\"enableContextMenu\" VALUE=\"0\">");
document.writeln("          <PARAM NAME=\"SAMIStyle\" VALUE=\"\">");
document.writeln("          <PARAM NAME=\"SAMILang\" VALUE=\"\">");
document.writeln("          <PARAM NAME=\"SAMIFilename\" VALUE=\"\">");
document.writeln("          <PARAM NAME=\"captioningID\" VALUE=\"\">");
document.writeln("        <\/OBJECT>");
document.writeln("        <DIV><\/DIV><\/TD>");
document.writeln("    <\/TR>");
document.writeln("  <\/TBODY>");
document.writeln("</TABLE>");