// JavaScript Document

function init(){
	//Enlaces externos
	var enlaces = $$('a');
	enlaces.each(function(enlace, i){
		if(enlace.getProperty('rel') == 'external'){
			enlace.setProperty('target', '_blank');
		}
	});
	
	//Portal transaccional
	$('nav_transaccion').addEvent('click', function(){
		var width = 1024;
		var height = 768;
		var pt = window.open(this.href, '01', 'directories=no,status=yes,scrollbars=yes,resizable=yes,width='+width+',height='+height+',top=0,left=0');
		pt.focus();
		return false;
	});
	
	//Enmascarar Mail
	if($('contact_mail')){
		$('contact_mail').set('html', '<a href="mailto:tarjetaexito@tarjetaexito.com.co">tarjetaexito@tarjetaexito.com.co</a>');
	}
	
	//Agentes de cobranza
	if($('agentes')){
		$('cobranza').setStyle('display', 'none');	
		var txt = $('agentes').get('text');
		$('agentes').set('html', '<a href="#TB_inline?height=390&amp;width=940&amp;inlineId=cobranza" class="smoothbox">'+txt+'</a>');
	}
}

window.addEvent('domready', init);