function showVideo(page, width, height, left, top, title, subtitle, videoFile){
	var newWin;
	newWin = window.open(page + '?title=' + title + '&subtitle=' + subtitle + '&videoFile=' + videoFile + '&pageWidth=' + width + '&pageHeight=' + height, 'infowin', 'width=' + width + ', height=' + height + ',left=' + left + ',top=' + top + ',screenX=' + left + ',screenY=' + top + ',scrollbars=0, resizable=1, toolbars=yes,menubar=no');
	
}


