function showSwf(zFileName, zWidth, zHeight) {

	document.writeln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,2*,0" width="' + zWidth + '" height="' + zHeight + '">');

	document.writeln('<param name="AllowScriptAccess" value="sameDomain"> ');

	document.writeln('<param name="quality" value="high">');

	document.writeln('<param name="menu" value="false">');

	document.writeln('<param name="movie" value="' + zFileName + '">');

	document.writeln('<embed AllowScriptAccess="never" src="' + zFileName + '" width="' + zWidth + '" height="' + zHeight + '" ></embed>');

	document.writeln('</object>');

}





function showSwfTrans(zFileName, zWidth, zHeight) {

	document.writeln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,2*,0" width="' + zWidth + '" height="' + zHeight + '">');

	document.writeln('<param name="AllowScriptAccess" value="sameDomain"> ');

	document.writeln('<param name="quality" value="high">');

	document.writeln('<param name="menu" value="false">');

	document.writeln('<param name="movie" value="' + zFileName + '">');

	document.writeln('<param name="wmode" value="Transparent">');

	document.writeln('<embed AllowScriptAccess="never" src="' + zFileName + '" width="' + zWidth + '" height="' + zHeight + '" wmode="Transparent"></embed>');

	document.writeln('</object>');

}



function showWMP(zFileName, zWidth, yHeight) {

    var zHeight = yHeight + 69;

	document.writeln('<object 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="'+ zWidth +'" height="' + zHeight + '" style="border: 1px solid #000000;">');

	document.writeln('<param name="filename" value="' + zFileName + '">');

	document.writeln('<param name="animationatStart" value="true">');

	document.writeln('<param name="transparentatStart" value="true">');

	document.writeln('<param name="autoStart" value="true">');

	document.writeln('<param name="showControls" value="true">');

	document.writeln('<param name="showstatusbar" value="true">');

	document.writeln('<param name="DisplaySize" value="0">');

	document.writeln('<param name="loop" value="false">');

	document.writeln('<embed type="application/x-mplayer2" pluginspage="http://microsoft.com/windows/mediaplayer/en/download/" id="MediaPlayer" name="MediaPlayer" autosize="-1" showcontrols="true" showtracker="-1" showdisplay="0" showstatusbar="1" videoborder3d="-1" src="' + zFileName + '" width="'+ zWidth +'" height="' + zHeight + '" autostart="true" displaysize="0" loop="false"></embed>');

	document.writeln('</object>');

}