<!--

var swfpath = "/fusione/fusione.gif"; // ABSOLUTE PATH

var swfwidth = 468;
var swfheight = 60;
var clickurl = "javascript:killbanner()";
var startX = -1;
var startY = -1;
var center = true;

var bbexph = 0; // dopo quante ore rivisualizzare (0=visualizza all'inizio di ogni sessione)
var bbcookie = "bannergone=ok"; // SPECIFIC COOKIE NAME

//if (document.cookie.indexOf(bbcookie) == -1) {
	
	if (bbexph > 0) {
		var bbexp = new Date();
		bbexp.setTime(bbexp.getTime() + (bbexph*60*60*1000));
		var bbexpstr = "; expires=" + bbexp.toGMTString();
	} else { var bbexpstr = ""; }
	document.cookie = bbcookie + bbexpstr;
	
	var itm = null;
	if (document.getElementById) 	{ itm = document.getElementById("bigDiv"); } 
	else if (document.all)				{	itm = document.all["bigDiv"];	} 
	else if (document.layers) 		{	itm = document.layers["bigDiv"]; }
	
	if (center) {
		var myWidth = 0, myHeight = 0;
		if( typeof( window.innerWidth ) == 'number' ) {
		  //Non-IE
		  myWidth = window.innerWidth;
		  myHeight = window.innerHeight;
		} else if( document.documentElement &&
		    ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
		  //IE 6+ in 'standards compliant mode'
		  myWidth = document.documentElement.clientWidth;
		  myHeight = document.documentElement.clientHeight;
		} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
		  //IE 4 compatible
		  myWidth = document.body.clientWidth;
		  myHeight = document.body.clientHeight;
		}
		startX=(myWidth-swfwidth)/2;
		startY=(myHeight-swfheight)/2;
	}
	
	if (startX != -1) {	if (itm) { itm.style.left = startX; }	}
	if (startY != -1) {	if (itm) { itm.style.top = startY; } }
	
	document.writeln('<SCRIPT LANGUAGE=VBScript>');
	document.writeln('on error resume next');
	document.writeln('Sub bigban_FSCommand(ByVal command,ByVal args)');
	document.writeln('if command="killbanner" then');
	document.writeln('	call killbanner()');
	document.writeln('end if');
	document.writeln('end sub');
	document.writeln('</'+'SCRIPT>');
	
	document.write('<table cellpadding="0" cellspacing="0" border="0" width="'+(swfwidth)+'" height="'+(swfheight+19)+'" style="border:1px solid #999999">');
	document.write('<tr>');
	document.write('	<td width="'+swfwidth+'" bgcolor="#fef5d6" align="left"><a href="http://www.ims-cm.com/"><img src="'+swfpath+'"  width="'+swfwidth+'" height="'+swfheight+'" style="border:0"></a></td>');
	document.write('</tr>');
	document.write('<tr>');
	document.write('	<td height="19" bgcolor="#FFFFFF" align="center" valign="middle"><a href="javascript:killbanner();"><font size="1" face="verdana,helvetica" color="#000000"><b>chiudi</b></font></a></td>');
	document.write('</tr>');
	document.write('</table>');

//}
//-->