
function Cine21_ShowMoviePlayer( file,width,height,name ) {
	document.write("<OBJECT ID='wmplayer' WIDTH='"+width+"' HEIGHT='"+height+"' CLASSID='CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95'>");
	document.write("<param name='FileName' value='"+file+"'>");
	document.write("<param name='ShowStatusBar' value='True'>");
	document.write("<param name='EnableContextMenu' value='False'>");
	document.write("<param name='AutoPlay' value='True'>");
	document.write("<embed name='"+name+"' width='"+width+"' height='"+height+"' src='"+file+"' type='video/x-ms-asf' autoplay='true' showstatusbar='true' enablecontextmenu='false'></embed>");
	document.write("</OBJECT>");
}


function playflash(file,width,height,bgcolor,quality,name) {
 document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="'+height+'" id="'+name+'">');
 document.write('<param name="allowScriptAccess" value="always" />');
 document.write('<param name="movie" value="'+file+'" />');
 document.write('<param name="quality" value="'+quality+'" />');
 document.write('<param name="wmode" value="transparent" />');
 document.write('<param name="bgcolor" value="'+bgcolor+'" />');
 document.write('<embed src="'+file+'" quality="'+quality+'" wmode="transparent" bgcolor="'+bgcolor+'" width="'+width+'" height="'+height+'" name="'+name+'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
 document.write('</object>')
}

 function printFixedMoviePlayer( name, source, width, height ) {
	  document.write("<object id='"+name+"' width='"+width+"' height='"+height+"' classid='CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95'>");
	  document.write("<param name='Filename' value='"+source+"'>");
	  document.write("<param name='AnimationAtStart' value='False'>");
	  document.write("<param name='AutoStart' value='False'>");
	  document.write("<param name='AutoSize' value='False'>");
	  document.write("<param name='AutoRewind' value='True'>");
	  document.write("<param name='ClickToPlay' value='False'>");
	  document.write("<param name='CursorType' value='1'>");
	  document.write("<param name='DisplayBackColor' value='0'>");
	  document.write("<param name='DisplayForeColor' value='16777215'>");
	  document.write("<param name='DisplaySize' value='4'>");
	  document.write("<param name='EnableContextMenu' value='False'>");
	  document.write("<param name='InvokeURLs' value='False'>");
	  document.write("<param name='PlayCount' value='1'>");
	  document.write("<param name='SendMouseClickEvents' value='True'>");
	  document.write("<param name='SendPlayStateChangeEvents' value='True'>");
	  document.write("<param name='ShowCaptioning' value='False'>");
	  document.write("<param name='ShowControls' value='False'>");
	  document.write("<param name='ShowStatusBar' value='False'>");
	  document.write("<param name='TransparentAtStart' value='False'>");
	  document.write("<embed name='"+name+"' width='"+width+"' height='"+height+"' src='"+source+"' type='video/x-ms-asf' autoplay='false' autorewind='true' playcount='1' showcontrols='false' showstatusbar='false' enablecontextmenu='false'></embed>");
	  document.write("</object>");
 }


 function printMovieFile( name, source, width, height ) {
	 document.write("<object id='"+name+"' classid='clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95' width='"+width+"' height='"+height+"'>");
	 document.write("<param name='AutoPlay' value='0'>");
	 document.write("<param name='AutoRewind' value='1'>");
	 document.write("<param name='ClickToPlay' value='1'>");
	 document.write("<param name='Enabled' value='1'>");
	 document.write("<param name='ShowTracker' value='1'>");
	 document.write("<param name='EnableTracker' value='0'>");
	 document.write("<param name='EnableContextMenu' value='1'>");
	 document.write("<param name='ShowStatusBar' value='1'>");
	 document.write("<param name='ShowControls' value='1'>");
	 document.write("<param name='ShowAudioControls' value='1'>");
	 document.write("<param name='ShowCaptioning' value='0'>");
	 document.write("<param name='Mute' value='0'>");
	 document.write("<param name='ShowDisplay' value='0'>");
	 document.write("<param name='Filename' value='"+source+"'>");
	 document.write("<embed name='"+name+"' src='"+source+"' type='video/x-ms-asf' AutoPlay='0' width='"+width+"' height='"+height+"'></embed>");
	 document.write("</object>");
 }