function resolution() {
	if (screen.width < "1024") {
		alert("Site melhor visualizado na resolucao de tela '1024 x 768' ou maior.");
	}
}

function viewform() {
	document.getElementById('form_guest').style.display = 'block';
}

function Album(text) {
	document.getElementById("legend").innerHTML = text;
}

function Recados(i) {
	if (i == 1) {
		document.getElementById('oculta').style.visibility = 'visible';
		document.getElementById('recados').style.visibility = 'visible';
		document.getElementById('recados').style.display = 'block';
	}
	else {
		document.getElementById('oculta').style.visibility = 'hidden';
		document.getElementById('recados').style.visibility = 'hidden';
		document.getElementById('recados').style.display = 'none';
	}
}

function Postar(i) {
	if (i == 1) {
		document.getElementById('oculta').style.visibility = 'visible';
		document.getElementById('postar').style.visibility = 'visible';
		document.getElementById('postar').style.display = 'block';
	}
	else {
		document.getElementById('oculta').style.visibility = 'hidden';
		document.getElementById('postar').style.visibility = 'hidden';
		document.getElementById('postar').style.display = 'none';
	}
}

<!-- SCROLLING VERTICAL //////////
function slow(id) {
	id.scrollAmount = 0;
}
 
function fast(id) {
	id.scrollAmount = 1;
}
function fast2(id) {
	id.scrollAmount = 2;
}
//-->

<!-- ABRIR POP-UP
function AbrePop(theURL,winName,features) {
	window.open(theURL,winName,features);
}
//-->

<!-- ABRIR EVENTO ///////////
function Exibe(id) {
	if (id != 0) {
		window.open('album.aspx?evento=' + id,id,"width=790,height=500,top=0,left=0,scrollbars=yes");
	}
	else {
		alert("Por favor, escolha um evento!");
	}
}
//-->