function displayBoxAndHideLayer(filename, height)
{
	document.write('<object classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6" height=45 width=220 >');
	document.write('<PARAM NAME="fileName" VALUE="media/'+filename+'">');
	document.write('<param name="URL" value="media/'+filename+'">');
	document.write('<PARAM NAME="showControls" VALUE="true"><PARAM NAME="autoStart" VALUE="0">');
	document.write('<embed src="media/'+filename+'" width="220" height="'+height+'" animationatstart="true" transparentatstart="true" autostart=0 showcontrols="true"></embed>');
	document.write('</object>');
}
function displayMovieBoxAndHideLayer(filename, height)
{
	document.write('<object height='+height+' width=220 id=mediaPlayer'); 
   	document.write('codebase=http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701'); 
    document.write('type=application/x-oleobject height=192'); 
	document.write('standby="Loading Microsoft Windows Media Player components..."'); 
	document.write('width=220 ');
	document.write('classid=CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95>');
	document.write('<param name="fileName" value="media/'+filename+'">');
	document.write('<param name="animationatStart" value="false">');
	document.write('<param name="transparentatStart" value="true">');
	document.write('<param name="autoStart" value="0">');
	document.write('<param name="showControls" value="true">');
	document.write('<embed src="media/'+filename+'" width="220" height="'+height+'" autostart="0" filename="media/'+filename+'" animationatstart="false" transparentatstart="true" showcontrols="true"></embed>');
	document.write('</object>');
}