/*******************************************************/
/*                                                     */
/*               Associação Inês Botelho               */
/*                                                     */
/*                  funcoesgerais.js                   */
/*                                                     */
/*******************************************************/

function setLocale(locale) {
	var newForm = top.document.createElement("FORM");
	var inp = top.document.createElement("INPUT");
	inp.name = "inpLocale";
	inp.value = locale;
	newForm.appendChild(inp);
	top.document.body.appendChild(newForm);
	newForm.action = "/aib/main";
	newForm.method = "POST";
	newForm.target = "dummyIframe";
	newForm.submit();
	top.document.body.removeChild(newForm);
	window.location.reload();
}

// Encaminhar para uma página directamente
function goTo(page) {
	window.location.replace("/aib/main/" + page);
}

// Encaminhar para uma página com execução Struts
function goToStruts(page) {
	window.location.replace("/aib/jsp/main/" + page);
}

function setAlbum(src) {
	var iframe = top.document.getElementById("lertWindow");
	iframe.src = "/aib/jsp/main/" + src;
	showPhotoPopup();
	window.scrollTo(0,0);
}

function openNewPage(page) {
	window.open(page);
}
