<!-- Begin 
timeout =0; // Close window after __ number of seconds? 
// 0 = do not close, anything else = number of seconds 

function Start(URL, WIDTH, HEIGHT, TITLE) { 
windowprops = "left=50,top=50,width=740,height=580"; 

text = "<html><head><title>" + TITLE + "</title><LINK REL='stylesheet' TYPE='text/css' HREF='CSS/style.css'></head><body class='achterg2'>"; 

if (timeout != 0) text +=" onLoad=\"setTimeout('window.close()', " + timeout*1000 + ");\""; 

//text += "><center><embed name='WindowsMediaPlayer' alt='" + TITLE + "' lang='be' id='WindowsMediaPlayer' src='" + URL + "' loop='true' onClick='parent.self.close();' onRightClick='parent.self.close();'>"; 
text += "<center><object id='MediaPlayer1' width=" + (WIDTH) + " height=" + (HEIGHT) + " classid='CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6' type='application/x-oleobject'>";
text += "<PARAM name='URL' value='" + URL + "'><PARAM name='autoStart' value='true'>";
text += "<param name='uiMode' value='full'><PARAM NAME='stretchToFit' VALUE='false'>";
text += "<PARAM NAME='playCount' VALUE='1'><PARAM NAME='enabled' VALUE='true'>";
text += "<EMBED TYPE='application/x-mplayer2' NAME='MediaPlayer1' WIDTH=" + (WIDTH) + " HEIGHT=" + (HEIGHT) + " src='" + URL + "' filename='" + URL + "' autoStart='false'";
text += "showcontrols='True' showstatusbar='True' showdisplay='False' autorewind='True' pluginspage='http://www.microsoft.com/windows/windowsmedia/download/default.asp'></EMBED></OBJECT></center>";

if (timeout != 0) text +="<br><font face='arial, helvetica' size='-1'>Preview closes after " + timeout + " seconds.</font>"; 

text += "</center></body></html>"; 

preview = window.open("", "preview", windowprops); 
preview.document.open(); 
preview.document.write(text); 
preview.document.close(); 
} 
// End --> 
