//bannerfader
	// follow = true --> sigue el link en la img cerrar
	// follow = false --> no sigue el link en la img cerrar
	var follow = true;
	var chances = 2;
	var ahora = new Date()
	var segundos = ahora.getSeconds()
	//var bannerSoporteOptico = segundos % chances;
	//bannerSoporteOptico +=1;

window.addEvent('domready', function() {
	//if(bannerSoporteOptico == 1){
		//var fxMsn = new Fx.Styles($("im_popupFixed"), {duration: 400, wait: false})
		//fxMsn.start({opacity : 1});
		$("im_popupFixed").setStyles({display:'block'});
		$('im_close').addEvent('click', function(event) {
			$("im_popupFixed").setStyles({display:'none'});
			if(!follow){
				event = new Event(event).stop();
			}
		});
	//}
});