
// js voor loading film //
function loadfilm(titel) {

w=400;
h=320;
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,status=no,resizable=no';
FilmWin = open('blank.html','filmextern',settings);
FilmWin.focus();

FilmWin.document.open(titel);

FilmWin.document.write('<HTML><HEAD><TITLE>'+titel+'</TITLE>');
FilmWin.document.write('<style type="text/css">');
FilmWin.document.write('* html object.mov {display: none;}');
FilmWin.document.write('* html object.mov/**/ {display: inline;}');
FilmWin.document.write('* html object.mov {display/**/: none;}');
FilmWin.document.write('</style>');
FilmWin.document.write('</HEAD>');
FilmWin.document.write('<BODY BGCOLOR="#000000" STYLE="background-color: Black; color: White; margin-left: 0px; margin-right: 0px; margin-top: 0px; margin-bottom: 0px;" onBlur="self.focus()">');
FilmWin.document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" align="middle" width="400" height="320">');
FilmWin.document.write('<param name="src" value="../films/'+titel+'.mov" />');
FilmWin.document.write('<param name="controller" value="true" />');
FilmWin.document.write('<object type="video/quicktime" data="../films/'+titel+'.mov" width="400" height="320" align="middle" class="mov">');
FilmWin.document.write(' <param name="controller" value="true" />');
FilmWin.document.write('Fout bij weergeven filmpje');
FilmWin.document.write('</object>');
FilmWin.document.write('</object>');
FilmWin.document.write('</BODY></HTML>');

FilmWin.document.close();

}

