    function popUp(url, name, w, h){
	   var str = "height=" + h + ",width=" + w + ",scrollbars=0,resizable=0,menubars=1";
	   if (parseInt(navigator.appVersion) > 3)
		str += ",left=" + ((screen.width - w) / 2) + ",top=" + parseInt((screen.height - h) / 3);
	   win = window.open(url, name, str);

	}

	function GoNext(video) {

	var selectedStream;
	var redirectPath;

	redirectPath = "/media/cardinalplayer" + video + ".aspx";
		if (screen.width <= 1023) {
			popUp(redirectPath, "eventwin", 350, 200);
		} else {
			popUp(redirectPath, "eventwin", 350, 200);

		}

    }
