function movieView(url,width,height){
    document.write("<embed src='"+url+"' width='"+width+"' height='"+height+"' boder='0'></embed>");
}
 

function swfView(url,width,height){
 document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' ");
 document.write("  codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' ");
 document.write("  width='"+width+"' height='"+height+"' align='middle'>");
 document.write(" <param name='allowScriptAccess' value='always' /> ");
 document.write(" <param name='movie'    value='"+url+"' /> ");
 document.write(" <param name='quality'   value='high' /> ");
 document.write(" <param name='wmode'    value='transparent'> ");
 document.write(" <param name=menu value=false> ");
 document.write(" <embed src='"+url+"' quality='high' width='"+width+"' height='"+height+"' align='middle' ");
 document.write("  allowScriptAccess='sameDomain' type='application/x-shockwave-flash' ");
 document.write("  pluginspage='http://www.macromedia.com/go/getflashplayer' />");
 document.write("</object>");
}

function swfView2(url,width,height){
 document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' ");
 document.write("  codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' ");
 document.write("  width='"+width+"' height='"+height+"' align='middle'>");
 document.write(" <param name='allowScriptAccess' value='always' /> ");
 document.write(" <param name='movie'    value='"+url+"' /> ");
 document.write(" <param name='quality'   value='high' /> ");
 document.write(" <embed src='"+url+"' quality='high' width='"+width+"' height='"+height+"' align='middle' ");
 document.write("  allowScriptAccess='sameDomain' type='application/x-shockwave-flash' ");
 document.write("  pluginspage='http://www.macromedia.com/go/getflashplayer' />");
 document.write("</object>");
}


function movieView2(url,width,height){
    document.write("<embed src='"+url+"' width='"+width+"' height='"+height+"' boder='0'></embed>");
}





function allblur() {
  for (i = 0; i < document.links.length; i++)
    document.links[i].onfocus = document.links[i].blur;
}



function movieView2(url,width,height){
	document.write("<embed src='"+url+"' width='"+width+"' height='"+height+"' boder='0'></embed>");
}



function movieView(url,width,height){
	var doc;
	doc = '<OBJECT ID="mediaPlayer" CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" STANDBY="Loading Microsoft Windows Media Player components..." TYPE="application/x-oleobject" width='+width+' height='+height+'>';
	doc += '<param name="Filename"  value="'+url+'">';
    doc += '<PARAM NAME="AutoStart" VALUE="1">';
    doc += '<PARAM NAME="ShowControls" VALUE="0">';
    doc += '<PARAM NAME="ShowStatusBar" VALUE="0">';
    doc += '<PARAM NAME="ShowDisplay" VALUE="0">';
    doc += '<PARAM NAME="ShowTracker" VALUE="0">';
	doc += '<PARAM NAME="width" VALUE="'+width+'">';
	doc += '<PARAM NAME="height" VALUE="'+height+'">';
	doc += '<PARAM NAME="SendMouseClickEvents" VALUE="1">';
	doc += '<PARAM NAME="EnableContextMenu" VALUE="false">';
	doc += '</object>';
	document.write(doc);
}

