//Flash Object Creation
function fnSwf(hold,id,path,width,height,color){

//Variable Data
var output = '';

//Create Code
output = '<object type="application/x-shockwave-flash" id="' + id + '" data="' + path + '" width="' + width + '" height="' + height + '">';
output += '<param name="movie" value="' + path + '" />';
output += '<param name="quality" value="high" />';
output += '<param name="bgcolor" value="#' + color + '" />';
output += '</object>';

//Output Data
document.getElementById(hold).innerHTML = output;

}
