//-Abre->
function abre(url,janela,larg,alt,scrol,mx){
jan=window.open(url,janela,'toolbar=no,location=no,directories=no,maximize='+mx+',status=no,menubar=no,scrollbars='+scrol+',resizable=no,adress=no,copyhistory=no,title=yes,width='+larg+',height='+alt+',top=0,left=0');
}
//-end->
//->
function fav () {
if (navigator.appName == 'Microsoft Internet Explorer' && parseInt(navigator.appVersion) >= 4)
{
window.external.AddFavorite(top.location.href,document.title);
 }else{alert ('CTRL + D para adicionar aos seus Favoritos');}
}
function set_xmlhttp() {
	try {
		xmlhttp = new XMLHttpRequest();
	} catch (erro) {
		try {
			xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (erro) {
			try {
				xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
			} catch (erro) {
				xmlhttp = false;
			}
		}
	}
}


function pagina(pag) {
	set_xmlhttp();
	document.getElementById('pagina').innerHTML = '<br><center><img src="imagens/load.gif" align="top" border="0"><br /><br /><font color="#FFFFFF"><b>Carregando Dados . . .</b></font></center>';
	xmlhttp.onreadystatechange = function() {
		if (xmlhttp.readyState == 4) {
			document.getElementById('pagina').innerHTML = xmlhttp.responseText;
		}
	}
	
	xmlhttp.open("GET", "include.php?link="+pag, true);
	xmlhttp.send(null);
}
//-------------------------------------------------------------------------------------------------------------------------------