function openVideoWindow(videoURL, videoHeight, videoWidth)
{
	windowHeight = videoHeight + 14;	// for the video timeline
	videoWindow = window.open (videoURL, 'videowindow', config='height=' + windowHeight + ', width=' + videoWidth + ', toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no');
	
}