function loadVideo(swf, flv, desc, w, h, div) {
	var returnValue;
	returnValue = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + w + '" height="' + h + '">'
	returnValue+= '<param name="movie" value="' + swf + '">';
	returnValue+= '<param name="salign" value="T">';
	returnValue+= '<param name="flashvars" value="flvPath=' + flv + '&flvTitle=' + desc + '">';
	returnValue+= '<embed src="' + swf + '" width="' + w + '" height="' + h + '" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="flvPath=' + flv + '&flvTitle=' + desc + '" type="application/x-shockwave-flash" wmode="transparent" salign="T" bgcolor="#000000"></embed>';
	returnValue+= '</object>';
	document.getElementById(div).innerHTML = returnValue;
	}