function ShowMedia(objHTML,strURL,strType,intWidth,intHeight,autoStart) 
{ 
var strMedia=""; 
var blnShow = false; 

var objMedia=document.getElementById(objHTML);

if(objMedia.innerHTML){blnShow = true}; 
var re = new RegExp("\.[a-z0-9]+$","ig"); 
var strExtend = re.exec(strURL); 
strExtend="|"+String(strExtend).toLowerCase()+"|"; 
if(strType=="AUTO"){ 
if(String("|.swf|").indexOf(strExtend)>=0){strType="SWF"} 
if(String("|.mov|.qt|").indexOf(strExtend)>=0){strType="QT"} 
if(String("|.wmv|.wmp|.wm|.avi|.mp4|.mpg|.mpeg|.m3u|.pls|.wvx|.wax|.wmx|").indexOf(strExtend)>=0){strType="WMV"} 
if(String("|.asf|.wma|.asx|.wav|.mp3|.mpa|.mp2|.m1a|.m2a|.aac|").indexOf(strExtend)>=0){strType="WMA"} 
if(String("|.rm|.ram|.rmvb|.rpm|.amr|.3gp|.3gpp|.3g2|.3gp2|.rt|.rp|.smi|.smil|").indexOf(strExtend)>=0){strType="RM"} 
if(String("|.ra|").indexOf(strExtend)>=0){strType="RA"}} 
//if(blnShow){ 
if(false){ 
objMedia.innerHTML = strMedia;} 
else{ 
switch(strType){ 
case "SWF": 
strMedia="<object  id=\"player\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\""+intWidth+"\" height=\""+intHeight+"\"><param name=\"movie\" value=\""+strURL+"\"><param name=\"quality\" value=\"high\"><param name=\"play\" value=\"true\"><embed src=\""+strURL+"\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\""+intWidth+"\" height=\""+intHeight+"\" play=\"true\"></embed></object>" 
break; 
case "QT": 
strMedia="<object  id=\"player\" classid=\"CLSID:02bf25d5-8c17-4b23-bc80-d3488abddc6b\" codebase=\"http://www.apple.com/qtactivex/qtplugin.cab\" width=\""+intWidth+"\" height=\""+intHeight+"\" ><param name=\"src\" value=\""+strURL+"\" ><param name=\"autoplay\" value=\"true\" ><embed src=\"qtmimetype.pntg\" type=\"image/x-macpaint\"pluginspage=\"http://www.apple.com/quicktime/download\" qtsrc=\""+strURL+"\" width=\""+intHeight+"\" height=\""+intHeight+"\" autoplay=\"true\" ></embed></object>" 
break; 
case "WMV": 
strMedia="<object id=\"player\"  classid=\"CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95\" width=\"258\" height=\"268\"><param name=\"ShowStatusBar\" value=\"-1\"><param name=\"AutoStart\" value=\"true\"><param name=\"Filename\" value=\""+strURL+"\"></object>" 
break; 
case "WMA": 
strMedia="<object id=\"player\"  classid=\"CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95\" height=\"268\" width=\"258\"><param name=\"ShowStatusBar\" value=\"1\"><param name=\"showcontrols\" value=\"1\"><param name=\"ShowDisplay\" value=\"0\"><param name=\"AutoStart\" value=\""+autoStart+"\"><param name=\"Filename\" value=\""+strURL+"\"><embed type=\"application/x-mplayer2\" pluginspage=\"http://www.microsoft.com/Windows/MediaPlayer/\" src=\""+strURL+"\" autostart=\"0\"  showcontrols=\"1\" ShowDisplay=\"0\" ShowStatusBar=\"1\" width=\"258\" height=\"75\"></embed></object>" 
break; 
case "RM": 
strMedia="<object id=\"player\"  classid=\"CLSID:cfcdaa03-8be4-11cf-b84b-0020afbbccfa\" width=\""+intWidth+"\" height=\""+intWidth+"\"><param name=\"src\" value=\""+strURL+"\"><param name=\"controls\" value=\"imagewindow\"><param name=\"console\" value=\"one\"><param name=\"AutoStart\" value=\"true\"><embed src=\""+strURL+"\" width=\""+intWidth+"\" height=\""+intWidth+"\" nojava=\"true\" controls=\"imagewindow\" console=\"one\" autostart=\"true\"></object>" 
break; 
case "RA": 
strMedia="<object id=\"player\"  classid=\"CLSID:cfcdaa03-8be4-11cf-b84b-0020afbbccfa\" width=\"350\" height=\"36\"><param name=\"src\" value=\""+strURL+"\"><param name=\"controls\" value=\"ControlPanel\"><param name=\"console\" value=\"one\"><param name=\"AutoStart\" value=\"true\"><embed src=\""+strURL+"\" nojava=\"true\" controls=\"imagewindow\" console=\"one\" autostart=\"true\" width=\"350\" height=\"36\"></object>"} 
objMedia.innerHTML = strMedia;}
} 

