function RunVideo(Path,ID,FileName,BgColor,Height,Width,Autoplay,Hidden,Showcontrols,Loop)
{
var str1 = '<EMBED NAME="mediaplay" ID="mediaID" ENABLEJAVASCRIPT="True" SRC="' + Path + 'webs/' + ID + '/multimedia/' + FileName + '" ' ;
var str2 = 'BGCOLOR="' + BgColor + '" ' ;
var str3 = 'HEIGHT="' + Height + '" ' ;
var str4 = 'WIDTH="' + Width + '" ' ;
var str5 = 'AUTOSTART="' + Autoplay + '" ' ;
var str6 = 'HIDDEN="' + Hidden + '" ';
var str7 = 'SHOWCONTROLS="' + Showcontrols + '" ' ;
var str8 = 'LOOP="' + Loop + '" ' ;
var str9 = '>' ;
var FullString = str1 + str2 + str3 + str4 + str5 + str6 + str7 + str8 + str9 ;
document.write(FullString);
}
function RunAudio(SoundSource,BackgroundSound,LoopSound)
{
var FullString = '<EMBED ID="SoundID" ENABLEJAVASCRIPT="True" AUTOSTART="False" SRC="webs/' + SoundSource + '/multimedia/' + BackgroundSound + '" HEIGHT=0 WIDTH=0 LOOP= "' + LoopSound + '"> ' ;
document.write(FullString);
}
function PlaySound(soundobj)
{
  var thissound=document.getElementById(soundobj);
  thissound.Play();
}
function StopSound(soundobj)
{
  var thissound=document.getElementById(soundobj);
  thissound.Stop();
}
