// JavaScript Document
<!--
function stampa_flash(percorso, width, height, id, bg)
{
document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" id=\""+id+"\" width=\""+width+"\" height=\""+height+"\" align=\"left\" >");
document.write("<param name=\"allowScriptAccess\" value=\"sameDomain\">");
document.write("<param name=\"movie\" value=\""+percorso+"\">");
document.write("<param name=\"menu\" value=\"true\">");
document.write("<param name=\"quality\" value=\"best\">");
document.write("<param name=\"scale\"  value=\"noscale\">");
document.write("<param name=\"salign\"  value=\"lt\">");
document.write("<param name=\"bgcolor\" value=\""+bg+"\">");
document.write("<embed src=\""+percorso+"\" menu=\"false\" quality=\"best\" scale=\"noscale\" salign=\"lt\" bgcolor=\""+bg+"\" width=\""+width+"\" height=\""+height+"\" name=\"index\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\">");
document.write("</embed>");
document.write("</object>");
}
--> 


