function openScreen(url,width,height) {
	window.open(url, "window", "width=" +  width + ",height=" + height + ",top=0,left=0");
}

function callPage(altura, url) {
	parent.document.getElementById("conteudo").height = altura;
	top.conteudo.location = url;
}