// JavaScript Document
<!--
function stampa_flash(percorso, width, height, id)
{
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=\"#FFFFFF\">");
document.write("<embed src=\""+percorso+"\" menu=\"false\" quality=\"high\" scale=\"noscale\" salign=\"lt\" bgcolor=\"#FFFFFF\" 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>");
}
function popup(url_articolo,windowname,larghezza,altezza,left,top) {
var hWnd = window.open(url_articolo,windowname,"toolbar=no,width=" + larghezza + ",height=" + altezza + ",left=" + left + ",top=" + top + ",directories=no,status=no,statusbar=no,resizable=1,menubar=no,scrollbars=no");
if (!hWnd.opener) hWnd.opener = self;
if (hWnd.focus != null) hWnd.focus();
hWndpub = hWnd;
}
function HideDiv(div){
var e = document.getElementById(div);
e.style.display = 'none';
}
function ShowDiv(div){
var e = document.getElementById(div);
e.style.display = 'block';
}
--> 

