function playsound(soundfile){
	document.write('<div style="position: absolute; left: -500px; top: -500px">');
	document.write('<object width="300" height="42">');
	document.write('<param name="src" value="resources/sounds/' + soundfile + '">');
	document.write('<param name="autoplay" value="true">');
	document.write('<param name="controller" value="true">');
	document.write('<param name="bgcolor" value="#FF9900">');
	document.write('<embed src="resources/sounds/' + soundfile + '" autostart="true" loop="false" width="300" height="42" controller="true" bgcolor="#FF9900"></embed>');
	document.write('</object>');
	document.write('</div>');
}
function playvideo(videofile, videowidth, videoheight){
	videoheight = videoheight + 45;
	document.write('<OBJECT id="mediaPlayer" width="' + videowidth + '" height="' + videoheight + '"');
    document.write('classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"');
    document.write('codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"');
    document.write('standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject">');
    document.write('<param name="fileName" value="resources/videos/' + videofile + '">');
    document.write('<param name="animationatStart" value="true">');
    document.write('<param name="transparentatStart" value="false">');
    document.write('<param name="autoStart" value="true">');
    document.write('<param name="showControls" value="true">');
    document.write('<param name="loop" value="false">');
    document.write('<EMBED type="application/x-mplayer2" pluginspage="http://microsoft.com/windows/mediaplayer/en/download/" id="mediaPlayer" name="mediaPlayer" displaysize="4" autosize="-1" showcontrols="true" showtracker="-1" width="' + videowidth + '" height="' + videoheight + '" src="resources/videos/' + videofile + '" autostart="true" designtimesp="5311" loop="false"></EMBED>');
	document.write('</OBJECT>');
}
