function video(f,p,t,d,s)
{
	var file = escape(f);
	var folder = escape(p);
	var title = escape(t);
	var desc = escape(d);
	var section = escape(s);

	var path = "/inc/video/index.aspx?file=" + file + "&folder=" + folder + "&title=" + title + "&desc=" + desc + "&section=" + section;

	var newWindow = window.open(path,"Video","width=370,height=540,scrollbars=no,toolbar=no,menubar=no,status=no,location=no,resizable=yes")

	if(newWindow) newWindow.focus();
}