function capa(toDo){
	var url="controle.php?var="+toDo;
	requisicaoHTTP("GET",url,true);
}

function trataDados(){
	var usr = ajax.responseText;  // obtém a resposta como string
	document.getElementById("main").innerHTML=usr;
}

function port(toDo){
	if (toDo == 1){
		window.open('images/galeria/1/index.php','name','width=694,height=455,resizable=no,toolbar=no,location=no');
	} else if (toDo == 2){
		window.open('images/galeria/2/index.php','name','width=694,height=455,resizable=no,toolbar=no,location=no');
	} else if (toDo == 3){
		window.open('images/galeria/3/index.php','name','width=694,height=455,resizable=no,toolbar=no,location=no');
	} else if (toDo == 4){
		window.open('images/galeria/4/index.php','name','width=694,height=455,resizable=no,toolbar=no,location=no');
	} else if (toDo == 5){
		window.open('images/galeria/5/index.php','name','width=694,height=455,resizable=no,toolbar=no,location=no');
	} else if (toDo == 6){
		window.open('images/galeria/6/index.php','name','width=694,height=455,resizable=no,toolbar=no,location=no');
	}
}