function fotos(sPicURL) { 
	window.open("images/"+sPicURL, "", "resizable=1,HEIGHT=200,WIDTH=200");
}
function abrejanela(file) {
	var janela = open(file,'1','status=yes,titlebar=no,menubar=no,toolbar=no,location=no,directories=no,scrollbars=yes,resizable=yes,width=650,height=570')
	janela.focus();
}
function popup(theURL) {
  window.open(''+theURL,'','width=720,height=540');
}
function changeAnswer(answerId) {
	if (document.getElementById(answerId).style.display == 'none') {
		document.getElementById(answerId).style.display = 'block';
	} else {
		document.getElementById(answerId).style.display = 'none';
	}
}
function openForumWindow(theUrl) {
	var newWindow = window.open(theUrl,'hotSite','status=yes,titlebar=no,menubar=no,toolbar=no,location=no,directories=no,scrollbars=yes,resizable=yes,width=500,height=430');
	newWindow.focus();
}
function excluir(url) {
	if (confirm('Deseja realmente excluir este registro?')) {
		location.href = url;
	}
	return;
}
