function scriviSwf(swf,w,h,dimensioneFissa){
	document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"");
	document.write("codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab\"");
	if(dimensioneFissa==true){
		document.write("width=\""+w+"\" height=\""+h+"\">");
	} else {
		document.write("width=\"100%\" height=\"100%\">");
	}
	document.write("<param name=\"loop\" value=\"false\">");
	document.write("<param name=\"menu\" value=\"true\">");
	document.write("<param name=\"quality\" value=\"high\">");
	document.write("<param name=\"scale\" value=\"noscale\">");
	document.write("<param name='movie' value='"+swf+"' />\n");
	document.write("<param name='quality' value='high' />\n");
	document.write("<param name='wmode' value='transparent' />\n");

	if(dimensioneFissa==true){
		document.write("<embed src=\""+swf+"\" quality=\"high\" wmode=\"transparent\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" menu=\"true\" quality=\"high\" scale=\"noscale\"  type=\"application/x-shockwave-flash\" width=\""+w+"\" height=\""+h+"\"></embed>");
	} else {
		document.write("<embed src=\""+swf+"\" quality=\"high\" wmode=\"transparent\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" menu=\"true\" quality=\"high\" scale=\"noscale\"  type=\"application/x-shockwave-flash\" width=\"100%\" height=\"100%\"></embed>");
	}
	document.write("</object>\n");
}



function apriZoom(url, w, h){
	var l = Math.floor((screen.width-w)/2);
	var t = Math.floor((screen.height-h)/2);
	window.open(url,"","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l +", scrollbars=auto, resizable=yes");
}

function apriStampa(url, w, h){
	var l = Math.floor((screen.width-w)/2);
	var t = Math.floor((screen.height-h)/2);
	window.open(url,"","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l +", scrollbars=yes, resizable=yes");
}
