function ShowVideo(path, width, height)
{
	if (width == null)
		width=500;
		
	if (height == null)
		height=500;
		
	window.open('http://www.executivejetmanagement.com/ejmvideo.aspx?Path='+path, 'video', 'height='+height+',width='+width+',location=no, menubar=no, scrollbars=no, status=no, toolbar=no, resizable=yes');
	
	return;
}
