function quicktime(x,y,mov) {

win=window.open('', nr, 'width='+(x+19)+',height='+(y+30)+'')
win.moveTo( screen.width/2 - x/2,screen.height/2 - y/2 );
win.document.write('<body bgcolor=#B4C3E4>');
win.document.write('<object  id="beispiel_2"  width='+x+'  height='+y+'  classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"  codebase="http:\/\/www.apple.com\/qtactivex\/qtplugin.cab#version=6,0,2,0">    <param name="SRC" value='+mov+'>    <param name="autoplay" value="true">    <param name="controller" value ="true">    <param name="type" value="video\/quicktime">    <param name="pluginspage"      value="http:\/\/www.apple.com\/quicktime\/download\/index.html">  <embed    name="beispiel_2"    width='+x+'    height='+y+'    src='+mov+'    type="video\/quicktime"    autoplay="true"    controller="true"    enablejavascript="true"    pluginspage="http:\/\/www.apple.com\/quicktime\/download\/index.html">    <\/embed><\/object> ');
win.document.write('.');
nr++;

}
