function createFlashControl(divID, classid, codeBase, width, Height,align,tabindex,movieValue, quiltyValue,scaleValue,embedSource,embedType,pluginSpace)
{
	var d = document.getElementById(divID);
  d.innerHTML = '<OBJECT classid=' + classid + ' codeBase=' + codeBase + 
    ' width=' + width + ' Height=' + Height + ' align=' +  align  + ' tabindex=' + tabindex + '>' +
    '<param name="movie" value=' + movieValue + '>' +
    '<param name="quality" value=' + quiltyValue + '>' +
    '<param name="scale" value=' + scaleValue + '>' +
    '<EMBED src=' + embedSource  + ' width=' + width + ' Height=' + Height + 
    ' align=' +  align  +  ' type=' + embedType + ' PLUGINSPAGE=' + pluginSpace + '></EMBED></OBJECT>';
}
