// JavaScript Document
$(document).ready(function(){
						   
						   
      $("a[@name=aba]").click(function(){
			$("div[@name=layers]").hide();
			$("a[@name=aba]").attr('class','');
			$(this).blur();
	  		$(this).parent().next().children().fadeIn();
			//$(this).parent().children('div').show();
			$(this).addClass('select');
});

});

// JavaScript Document
$(document).ready(function(){
						   
						   
      $("a[@name=abel]").click(function(){
			$("div[@name=camadas]").hide();
			$("a[@name=abel]").attr('class','');
			$(this).blur();
	  		$(this).parent().next().children().fadeIn();
			//$(this).parent().children('div').show();
			$(this).addClass('select');
});

});


function Popup(id)      
	{         
		var DocumentContainer = document.getElementById(id);
		var mywindow = window.open('', 'Imprime', 'width=800,scrollbars=yes');        
		mywindow.document.write('<html><head><title>:: CRA-SP ::</title>');         
		mywindow.document.write('<link rel="stylesheet" href="../App_themes/skin_impressao.css" type="text/css" />');         
		mywindow.document.write('</head><body ><div id="conteudo">');         
		mywindow.document.write(DocumentContainer.innerHTML);         
		mywindow.document.write('</div></body></html>');         
		mywindow.document.close();         
		mywindow.print();         
		return true;     
	}


