// Hide div

function hide_visibility(id) {
for (var i = 0; i < id.length; i++) {
	var e = document.getElementById(id[i]);
e.style.display = 'none';
e.innerHTML = ""
} 
}

// Show div

function show_visibility(id) {
for (var i = 0; i < id.length; i++) {
	var e = document.getElementById(id[i]);
e.style.display = 'block';
e.innerHTML = "<div align=\"center\" style=\"margin-bottom: 10px;\"><a href=\"javascript:void(0)\" onclick=\"javascript:hide_visibility(new Array('cnnVideo'));\"><img src=\"http://thenewagenda.net/wp-content/themes/arthemia/images/icon_video_off.gif\" alt=\"Close\" width=\"80\" height=\"15\" border=\"0\" /><\/a><\/div><object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" width=\"425\" height=\"350\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0\"><param name=\"allowFullScreen\" value=\"true\" /><param name=\"allowscriptaccess\" value=\"always\" /><param name=\"src\" value=\"http://www.youtube.com/v/GWO2js_lKyg&amp;hl=en&amp;fs=1&amp;rel=0\" /><param name=\"allowfullscreen\" value=\"true\" /><embed type=\"application/x-shockwave-flash\" width=\"425\" height=\"350\" src=\"http://www.youtube.com/v/GWO2js_lKyg&amp;hl=en&amp;fs=1&amp;rel=0\" allowscriptaccess=\"always\" allowfullscreen=\"true\"> </embed></object>" 
}
}
