function openTeaser(src,swf_w,swf_h){
		var	flash = '<div style="padding-top:90px" id="movie_teaser" align="center" style="text-align:center;width:'+swf_w+'px;height:'+swf_h+'px;margin:0 auto"><div align="center" style="text-align:center"><a href="javascript:void 200" onclick="javascript:function(){$(\'#teaser\').fadeOut(200)}"><img src="http://www.winews.it/vinitaly_2007/images/chiudi.gif" border="0"></a></div><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+swf_w+'" height="'+swf_h+'" id="bannerDF180" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="'+src+'" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><embed src="'+src+'" quality="high" bgcolor="#ffffff" width="'+swf_w+'" height="'+swf_h+'" name="teaser" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object></div>';
			  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;
			  }
			var teaser = document.getElementById('teaser');
			teaser.style.height = myHeight+'px';
			teaser.style.cursor = 'pointer';
			teaser.onclick = function(){document.getElementById('teaser').innerHTML='';$('#teaser').fadeOut(300);}
			document.getElementById('teaser').innerHTML = flash;
			$('#teaser').animate({opacity: 0.7}, 600);
} 

function closeTeaser(){
	$('#teaser').fadeOut(200);
}