function loadMovie(file, width, height, id){
	document.getElementById(id).innerHTML = "";
	var html = "";
	html += "<object width=\""  + width + "\" height=\"" + height + "\" codebase=\"http://go.divx.com/plugin/DivXBrowserPlugin.cab\">";
		html += "<embed type=\"video/divx\" src=\"" + file + "\" width=\"" + width + "\" height=\"" + height + "\" autoPlay=\"true\"  pluginspage=\"http://go.divx.com/plugin/download/\">";
		html += "</embed>";
	html += "</object>";
	document.getElementById(id).innerHTML = html;
	document.getElementById('copyright').style.display = "block";
}
