
function video_div (div_height) {

if (navigator.appName == 'Microsoft Internet Explorer') {
	my_factor = 1;
} else {
	my_factor = .8;
}

if (div_height) {
	temp = div_height * my_factor;
	my_height = temp + "px";
	my_div = "<div style = 'height: " + my_height;
	my_div = my_div + "; width: 220px; text-align: center; background-color: #6699cc; overflow: auto;'>";
	my_div = my_div + "<p><br> <a class = 'videoheadlink' target = '_top' href = 'http://www.brugesgroup.com/media.live'>Videos and Podcasts</a> </p>"; 
} else {
	my_div = "<p> <a class = 'videotaillink' target = '_top' href = 'http://www.brugesgroup.com/media.live'>View All</a><br>&nbsp;</p>";
	my_div = my_div + "</div>";
}
document.write(my_div);
}

function video_link (p_top,movie_code, my_title, p_method, movie_extra) {

if (!movie_extra) {
	movie_extra = 0;
}


if (!p_method) {
	p_method = 2;
}

if (p_method == 2) {
	my_click = "javascript:video_popup(" + p_top+ ",'" + movie_code + "')";
	my_img = "<img class = 'videopic' src = 'http://img.youtube.com/vi/" + movie_code + "/default.jpg'>";
	document.write ("<a class = 'videolink' href = \"" + my_click);
	document.write ("\">" + my_title + "<br><br>" + my_img + "</a>");
}

if (p_method == 4) {
	my_img = "<img class = 'videopic' src = 'http://www.disclose.tv/files/videos/thumbnails/" + movie_extra + ".jpg'>";
	my_click = "javascript:video_popup(" + p_top+ ",'" + movie_code + "'," + p_method + ",'" + movie_extra + "')";
	document.write ("<a class = 'videolink' href = \"" + my_click);
	document.write ("\">" + my_title + "<br><br>" + my_img + "</a>");
}
document.write ("<hr>");
}

function video_popup(p_top,movie_code,p_method, movie_extra) {

if (!movie_extra) {
	movie_extra = 0;
}

if (!p_method) {
	p_method = 2;
}

if (movie_code == 0) {
	var my_html = "&nbsp;";
	document.getElementById('div_popup').style.display = "none";
} else {
	document.getElementById('div_popup').style.top = p_top;
	document.getElementById('div_popup').style.display = "block";
	var my_html = "Feature not yet supported";
	if (p_method == 2) {
		var my_html = "<br><object width=550 height=440><param name='movie' value='http://www.youtube.com/v/" + movie_code + "&hl=en_GB&fs=1&autoplay=1'> </param><param name='allowFullScreen' value='true'></param><param name='allowscriptaccess' value='always'></param><embed src='http://www.youtube.com/v/" + movie_code + "&hl=en_GB&fs=1&autoplay=1' type='application/x-shockwave-flash' allowscriptaccess='always' allowfullscreen='true' width='550' height='440'></embed></object> ";
	} 
	if (p_method == 4) {
		var my_html = "<br><object id='flowplayer' width='550' height='440' data='http://www.disclose.tv/swf/player.swf' type='application/x-shockwave-flash' rel='media:video' xmlns:media='http://search.yahoo.com/searchmonkey/media/' resource='http://www.disclose.tv/swf/player.swf?config=http://www.disclose.tv/videos/config_i/xxx/";
		my_html = my_html + movie_code;
		my_html = my_html + ".js' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0'>";
		my_html = my_html + "<param name='flashvars' value='config=http://www.disclose.tv/videos/config_i/flv/";
		my_html = my_html + movie_code;
		my_html = my_html + ".js' /> ";

		my_html = my_html + "<param name='movie' value='http://www.disclose.tv/swf/player.swf'> ";
		my_html = my_html + "<param name='wmode' value='transparent'>  ";
		my_html = my_html + "<param name='bgcolor' value='#000000'>  ";
		my_html = my_html + "<param name='allowFullScreen' value='true'>  ";
		my_html = my_html + "<param name='allowscriptaccess' value='always'> "; 
		my_html = my_html + "<a rel='media:thumbnail' href='http://www.disclose.tv/files/videos/thumbnails/";
		my_html = my_html + movie_extra;
		my_html = my_html + ".jpg'>  ";
		my_html = my_html + "<span property='media:title' content='The EU's Latest Financial Threat- John Redwood MP Video' >  ";
		my_html = my_html + "<span property='media:width' content='550'>  ";
		my_html = my_html + "<span property='media:height' content='440'>  ";
		my_html = my_html + "<span property='media:type' content='application/x-shockwave-flash'>  ";
		my_html = my_html + "<embed type='application/x-shockwave-flash' width='550' height='440' allowFullScreen='true'  ";
		my_html = my_html + "src='http://www.disclose.tv/swf/player.swf' quality='high' bgcolor='#FFFFFF'  ";
		my_html = my_html + "flashvars='config=http://www.disclose.tv/videos/config_i/flv/";
		my_html = my_html + movie_code;
		my_html = my_html + ".js' NAME='dtvplayer' PLUGINSPAGE='http://www.macromedia.com/go/getflashplayer'></EMBED>  ";
		my_html = my_html + "</object>";
	}	
}

var my_html = my_html + "<p><a href = 'javascript:video_popup(0,0)' style = 'text-decoration: none; color: white; font-weight:bold;'>STOP</a><br>&nbsp;</p>";

document.getElementById('div_popup').innerHTML = my_html;
}


