﻿/*global window */



function videopopup(url) {

	var newwindow =
	window.open(
		'/oth/video/player.asp' +
		'?Video=' + encodeURIComponent(url),
		'Video', 'height=375,width=374');

	if (newwindow && newwindow.focus) {
		newwindow.focus();
	}
}

