function openvideo (videoFile, windowTitle, width, height) {
	if(!width) { width = 420;}
	if(!height) { height = 320;}

	var windowOptions = 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+width+',height='+height;
	var newWindow = window.open('', '', windowOptions);
	//var windowTarget='<html><head><title>'+windowTitle+'</title><link rel=stylesheet type=text/css href=./config/css/style_main.css><body><center>new page</center></body></html>';	
	var windowTarget='<html><head><title>'+windowTitle+'</title><link rel=stylesheet type=text/css href=./config/css/style_main.css></head><body><center><div style=\"width:324px;height:270px;text-align:center;vertical-align:middle;\"><object id=\"WMV\" classid=\"CLSID:2179C5D3-EBFF-11CF-B6FD-00AA00B4E220\" codebase=\"http://www.microsoft.com/netshow/download/en/nsmp2inf.cab#Version= 5,1,51,415\" standby=\"Loading Microsoft Media Player components...\" type=\"application/x-oleobject\"><param name=\"FileName\" value=\"'+videoFile+'\"><param name=\"autostart\" value=\"true\"><param name=\"ShowControls\" value=\"true\"><param name=\"ShowDisplay\" value=\"false\"><param name=\"ShowStatusBar\" value=\"true\"><embed type=\"application/x-mplayer2\" name=\"MediaPlayer\" background=\"images/testclip.jpg\" transparentAtStart=\"true\" autostart=\"true\" width=\"320\" height=\"290\" src=\"'+videoFile+'\" showstatusbar=\"true\" showcontrols=\"true\" showdisplay=\"false\" pluginspage=\"http://www.microsoft.com/netshow/download/player.htm\"></embed></object><br><strong>Tijani<font color=#c12d50>.nl</font> © 2006</strong></div></center></body></html>';

	newWindow.document.write(windowTarget);
	//newWindow.document.bgColor=\"lightblue\"
	//newWindow.document.close() 
		
		
}

