// This function inserts a satay flash object into a div, the div must have an id, as evidenced by "strDivId"
function ftnInsertFlash(strDivId, strData, strWidth, strHeight, strSubstituteImage, strAltText)
{
  var d = document.getElementById(strDivId);
  d.innerHTML = 
    '  <object type="application/x-shockwave-flash" data="' + strData +'" width="'+ strWidth +'" height="' + strHeight + '">' +
	 '<param name="movie" value="' + strData +'" />' +
	 '<img src="' + strSubstituteImage +'" width="'+ strWidth +'" height="' + strHeight + '" alt="' + strAltText +'" />' +
	 '</object>';
};



