// JavaScript Documentfunction InsertFlashElement(m_movie, m_width, m_height)
function InsertFlashElement(m_movie, m_width, m_height)
{
	flashmovie = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="' + m_width + '" height="' + m_height + '">\n';
	flashmovie = flashmovie + '<param name="movie" value="' + m_movie + '" />\n';
	flashmovie = flashmovie + '<param name="wmode"/><param name="quality" value="high" />\n';
	flashmovie = flashmovie + '<embed src="' + m_movie + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + m_width + '" height="' + m_height + '">\n';
	flashmovie = flashmovie + '</embed>\n';
	flashmovie = flashmovie + '</object>\n';
	
	document.write(flashmovie);
	
}