// My function for embedding flash bits. Feel free to use it if you want--but it only works for flash,

// and isn't as flexible as AC_Runactivecontent is



function make_flash(swfPath, swfWidth, swfHeight) 

{

	var str = '<object type="application/x-shockwave-flash"';

	str += 'data="' + swfPath + '"';

	str += 'width="' + swfWidth + '" height="' + swfHeight + '">';

	str += '<param name="movie" value="' + swfPath + '" />';

	str += '<param name="allowScriptAccess" value="always" />';

	str += '</object>';

	

	document.write(str);

}