var VideoBoxCount=0;
var AudioBoxCount=0;

function VideoBox(Path,Width,Height,Video,Image,Info)
{
  VideoBoxCount++;

  document.write('<a href="'+Path+Video+'" style="display:block;width:'+Width+'px;height:'+Height+'px;border:1px solid black;position: relative; background-image:url('+Path+Image+')" id="VideoPlayer'+VideoBoxCount+'" onmouseover="document.getElementById(\'PlayButton'+VideoBoxCount+'\').style.display=\'block\';" onmouseout="document.getElementById(\'PlayButton'+VideoBoxCount+'\').style.display=\'none\';">');
  document.write('<img src="'+Path+'Pfeil.gif" id="PlayButton'+VideoBoxCount+'" style="display: none; position: absolute; left: 190px; top: 150px; border: 0;" onmouseover="document.getElementById(\'PlayButton'+VideoBoxCount+'\').style.display=\'block\';" onmouseout="document.getElementById(\'PlayButton'+VideoBoxCount+'\').style.display=\'none\';">');
  document.write('<\/a>');
  document.write('<div class="autor" id="Foto_autor">');
  document.write(Info);
  document.write('<\/div>');

  document.write('<script type="text/javascript">');
  document.write('flowplayer("VideoPlayer'+VideoBoxCount+'","'+Path+'flowplayer-3.1.3.swf");');
  document.write('<\/script>');
}

function AudioBox(Path,Width,Audio,Info)
{
  AudioBoxCount++;

  document.write('<div id="AudioPlayer'+AudioBoxCount+'" style="display: block; width: '+Width+'px; height: 25px; margin-top: 0px;" href="'+Path+Audio+'"><\/div>');
  document.write('<div class="klein">'+Info+'<\/div>');

  document.write('<script type="text/javascript">');
  document.write('flowplayer("AudioPlayer'+AudioBoxCount+'","'+Path+'flowplayer-3.1.3.swf",{plugins:{controls:{fullscreen:false}},clip:{autoPlay:false}});');
  document.write('<\/script>');
}
