function carregaJanela(s,w,h){
	document.getElementById("divJanelas").style.width = w;
	document.getElementById("divJanelas").style.height = h;
	
	// POSIÇÃO MEO
	left = (screen.width - w) / 2;
	document.getElementById("divJanelas").style.marginLeft = left;
	document.getElementById("divJanelas").style.display = "block";
	
	// carrega
	pagina = s+".php";
	carregaDados("divJanelas", pagina);
}

// ESCONDE LAYER
function ocultaJanela(){
	carregaDados("divJanelas", "vazia.php");
	document.getElementById("divJanelas").style.display = "none";
}

function ocultaAlerta(i){
	carregaDados("divAlertas", "vazia.php");
	document.getElementById("divAlertas").style.display = "none";
	
	if(i == 1){
		carregaDados("divJanelas", "vazia.php");
		document.getElementById("divJanelas").style.display = "none";
	}
}

function ajustaAlertas(){
	
	w = 400;
	h = 160;
	
	left = (screen.width - w) / 2;
	
	document.getElementById("divAlertas").style.marginLeft = left;
	document.getElementById("divAlertas").style.display = "none";
	
}

function login(a,s){
	urlPassa = "acoes.php?acao=login&apelido="+a+"&senha="+s;
	var head 	= document.getElementsByTagName("head").item(0);
	var eScript = document.createElement("script");
	eScript.setAttribute("src",urlPassa);
	head.appendChild(eScript);
}
