var torpedao = {
	
	canal : 'NOT',
	
	top : '100',
	
	left : (window.screen.width/2)-360,
	
	//height : document.body.offsetHeight,
	
	obj : function(id){ return document.getElementById(id); },
	
	init : function(){
		//div inicio
		var div = '<div id="torpedao_janela" style="width:720px; height:520px;';
		div += 'background-repeat:no-repeat; position:absolute; top:'+torpedao.top+'px; left:'+torpedao.left+'px; z-index:99; display:none">';
		//botao fechar
		div += '<div style="width:30px; height:33px; float:right">';
		div += '<a href="javascript:torpedao.fecha()"><img src="/plugins/torpedao/fechar.png" border="0"/></a>';
		div += '</div>';
		//iframe
		div += '<div style="float:right;width:203px; height:445px; margin-top:35px; background-color:#EEEEEE; padding:5px;">';
		div += '<iframe id="iFrameTopedao"  frameBorder="no" scrolling="no" src="/plugins/torpedao/" width="203px" height="445px"></iframe>';
		div += '</div>';
		//opcoes
		div += '<div style="float:right; width:210px; height:20px; margin-top:160px;">';
		div += '<div id="torpedao_canal" style="margin-bottom:10px;font-family:Verdana, Geneva, sans-serif; font-size:12px;"></div>';
		div += '<div id="torpedao_opcoes"></div>';
		div += '</div>';
		//botoes
		div += '<div style="float:left; margin-top:285px; margin-left:50px;">';
		div += '<a href="javascript:torpedao.opcoes(\'NOT\')"><img src="/plugins/torpedao/bt_noticias.png" border="0" /></a>';
		div += '<a href="javascript:torpedao.opcoes(\'ESP\')"><img src="/plugins/torpedao/bt_esportes.png" border="0" style="margin-left:15px;" /></a>';
		div += '<a href="javascript:torpedao.opcoes(\'ENT\')"><img src="/plugins/torpedao/bt_entretenimento.png" border="0" style="margin-left:15px;" /></a>';
		div += '</div>';
		div += '</div>';
		//div fim
		var bg = '<div id="torpedao_bg" style="position: absolute; top: 0px; left: 0px; width: 100%; background-color: #000000; filter:alpha(opacity=30); -moz-opacity: 0.3; opacity: 0.3; z-index: 98; display:none;"></div>'
		document.write(div);
		document.write(bg);
	},	
	
	abre : function(c){
		torpedao.obj('torpedao_janela').style.backgroundImage = 'url(/plugins/torpedao/bg.png)';
		if(c) torpedao.canal = c;
		torpedao.obj('iFrameTopedao').src = '/plugins/torpedao/';
		if(Ext.isIE){ var iH = document.documentElement.clientHeight; } else { var iH = window.innerHeight; }
		torpedao.top = (((iH/2)+document.body.parentNode.scrollTop)-266);
		torpedao.obj('torpedao_janela').style.top = this.top+'px';
		torpedao.obj('torpedao_janela').style.display = '';
		torpedao.opcoes(torpedao.canal);
		torpedao.obj('torpedao_bg').style.display = '';
		torpedao.obj('torpedao_bg').style.height = document.body.offsetHeight+'px';
	},
	
	descricaoCanal : function(c){
		var d = '';
		switch(c){
			case 'NOT' : d = '<b style="color:#b30000">Not&iacute;cias</b>'; break;
			case 'ESP' : d = '<b style="color:#81ad00">Esportes</b>'; break;
			case 'ENT' : d = '<b style="color:#ff7800">Entretenimento</b>'; break;
		}
		return d;
	},
		
	opcoes : function(o){
		torpedao.obj('torpedao_canal').innerHTML = torpedao.descricaoCanal(o);
		torpedao.obj('torpedao_opcoes').innerHTML = '<img src="/lib/2us/img/loading_peq.gif" />';
		new xmlTemplate({xml:'/plugins/torpedao/'+o+'.xml',xsl:'/plugins/torpedao/opcoes.xsl',div:'torpedao_opcoes'});
	},
	
	iframe : function(titulo,descricao,prefix,idow,idcom,guid,imagem){
		do{ imagem = imagem.replace('*','\\'); } while ( eval(imagem.indexOf('*'))>0 );
		var cod = 'http://www.torpedao.com.br/web/widgethome.aspx?type=Vertical&pos=LogoLeft&img=&bg=EEEEEE&clrbdr=none&clrfont=393939&font=Verdana%2c+Arial%2c+Helvetica%2c+sans-serif&ttl='+encodeURI(titulo)+'&desc='+encodeURI(descricao)+'&idow='+idow+'&idcom='+idcom+'&guid='+guid+'&prefix='+prefix+'&imgdefault='+imagem;
		torpedao.obj('iFrameTopedao').src = cod;
	},
	
	fecha : function(){
		torpedao.obj('torpedao_janela').style.display = 'none';
		torpedao.obj('torpedao_bg').style.display = 'none';
	}
			
}

torpedao.init();
