<!-- Required to launch Video display page
	
	function displayVideo(video, width, height)
	{
		
		if (video == undefined)
			video = "video.swf";
		if (width == undefined)
			width = 480;
		if (height == undefined)
			height = 380;
		
		var url = "/watch.aspx?video=" + video;
			
		var win = window.open(url, "_blank", "height=" + height + ",width=" + width + ",resizeable=no,menubar=no,scrollbars=no,status=no,toolbar=no");
	}
// -->