<!--
	var id=0;

	function loadAjax(elemento, url, num){
		var xmlhttp = false;
		var frame 	= document.getElementById(elemento);
		var date 	= new Date();
		var complx	= "complx"+encodeURI(Math.random().toString() .replace(".","")+"="+date.getTime());	
	
		id = num;
	
		frame.innerHTML = "<table border='0' width='100%' height='456' cellspacing='0' cellpadding='10' bgcolor='#FFFFFF'><tr><td><table border='0' width='100%' cellspacing='0' cellpadding='3'><tr><td><p align='center'><img border='0' src='imagens/70.gif' width='16' height='16'></td></tr><tr><td><p align='center'><font face='Tahoma' style='font-size: 8pt' color='#666666'>Carregando Aguarde</font></td></tr></table></td></tr></table>";
	
		url+=(url.match(/\?/)?"&":"?")+complx;

		try{xmlhttp = new ActiveXObject("Msxml12.XMLHTTP"); } catch (e){ try{ xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e){ xmlhttp = false; } }
		if(!xmlhttp && typeof XMLHttpRequest != 'undefined'){ xmlhttp = new XMLHttpRequest(); }

		xmlhttp.open("GET", url);
		xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
		xmlhttp.setRequestHeader("Cache-Control", "no-store, no-cache, must-revalidate");   
		xmlhttp.setRequestHeader("Cache-Control", "post-check=0, pre-check=0"); 
		xmlhttp.setRequestHeader("Pragma", "no-cache");
	
		xmlhttp.onreadystatechange = function(){
			if(xmlhttp.readyState == 4 && xmlhttp.status == 200){
				frame.innerHTML = xmlhttp.responseText;
			}
		}

		xmlhttp.send(null);
	}
-->