function embedFlash(url, width, height, wmode, bgcolor, hideScriptAccess, idAttrib, classAttrib, styleAttrib) {
	document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"  WIDTH="'+width+'" HEIGHT="'+height+'"');
	if (idAttrib) {
		document.write(' id="'+idAttrib+'"');
	}
	if (classAttrib) {
		document.write(' class="'+classAttrib+'"');
	}
	if (styleAttrib) {
		document.write(' style="'+styleAttrib+'"');
	}
	document.write('>');
	document.write('<PARAM NAME="movie" VALUE="'+url+'">');
	document.write('<PARAM NAME="quality" VALUE="high">');
	document.write('<PARAM NAME="wmode" VALUE="'+wmode+'">');
	document.write('<PARAM NAME="bgcolor" VALUE="'+bgcolor+'">');
	if (hideScriptAccess == null) {
		document.write('<PARAM NAME="allowScriptAccess" VALUE="always">');
	}
	document.write('<EMBED type="application/x-shockwave-flash" SRC="'+url+'" WIDTH="'+width+'" HEIGHT="'+height+'" wmode="'+wmode+'" bgcolor="'+bgcolor+'"');
	if (hideScriptAccess == null) {
		document.write(' allowScriptAccess="always" ');
	}
	document.write('/>');
	document.write('</OBJECT>');
}



function embedFlashWithFlashVars(url, width, height, bgcolor, flashvars, wmode) {
	document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"  WIDTH="'+width+'" HEIGHT="'+height+'">');
	document.write('<PARAM NAME="movie" VALUE="'+url+'">');
	document.write('<PARAM NAME="quality" VALUE="high">');
	document.write('<PARAM NAME="bgcolor" VALUE="'+bgcolor+'">');
	document.write('<PARAM NAME="FlashVars" value="'+flashvars+'">');
	document.write('<PARAM NAME="allowScriptAccess" VALUE="always">');
	document.write('<PARAM NAME="wmode" VALUE="'+wmode+'">');
	
	document.write('<EMBED type="application/x-shockwave-flash" SRC="'+url+'" WIDTH="'+width+'" HEIGHT="'+height+'" wmode="'+wmode+'" bgcolor="'+bgcolor+'"');
	
	document.write('/>');
	document.write('</OBJECT>');
}

function embedWindowsMediaPlayer(url, width, height, bgcolor, autostart){

	if(bgcolor == null){
		bgcolor="darkblue";
	}
	
	document.write('<OBJECT CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" type="application/x-oleobject" WIDTH="'+width+'" HEIGHT="'+height+'">');
	document.write('<PARAM NAME="URL" VALUE="'+url+'">');
	document.write('<PARAM NAME="Enabled" VALUE="true">');
	document.write('<PARAM NAME="AutoStart" VALUE="'+autostart+'">');
	document.write('<PARAM NAME="SendPlayStateChangeEvents" VALUE="true">');
	document.write('<PARAM NAME="StretchToFit" VALUE="true">');
	document.write('<embed type="application/x-mplayer2" src="'+url+ '" autostart="'+autostart+'" height="'+height+'" width="'+width+'" pluginspage="http://microsoft.com/windows/mediaplayer/en/download/" name="mediaPlayer" displaysize="4" autosize="0" showcontrols="1" showtracker="1" showdisplay="0" showstatusbar="0" videoborder3d="0" designtimesp="5311" loop="0"');
	document.write('/>');
	document.write('</OBJECT>');
}


