// JavaScript Document

//	window.moveTo(200,0);
//    window.resizeTo(850,screen.availHeight);


	function mostra(x) {
		aux = "http://webtest.dmz.inpe.br/ete/definicoes/"+x;
		w = open(aux,"teste","width=500,height=300,titlebar=no,statusbar=no");
	}
	
	
	function decod(y) {
		var i=0;
		
		x = new String(y);
		
		alfa1= new String("abcdefghijklmnopqrstuvwxyz_0123456789@.");
	    alfa2= new String("fghijklmnopqrstuvwxyz_0123456789@.abcde");

		t1 = y.length;
	
		emai = "";
				
		for ( i=0; i < t1; i++) {
		
			letra = y.charAt(i);
			
			p = alfa2.indexOf(letra);
			emai = emai + alfa1.charAt(p);
		}

		document.write("<img src='img/envelope.jpg' alt='email' title='email' class='email' onclick='window.location=\"mailto:"+emai+"\"'>");
		
		
	}
	
	function xxx(id) {
		k = document.getElementById(id);
		k.className = "botao_ativo2";
		/*
		z = "";
		for (x in k) {
			z = z + "<tr><td>" + x + "</td><td>" + k[x] + "</td></tr>";
		}
		w = open("","nova","scrollbars,menubar");
		w.document.write("<table>");
		w.document.write(z);
		w.document.write("</table>");
		*/
		
	}
	
	
