function gotoHome() {
	parent.gotoUrl('Home.html');
}

function gotoSecao(Secao) {
	var url = false;
	switch (Secao) {
		case '1':
			url = 'QuemSomos.html';
			break;
		case '2':
			url = 'Instrumentos.html';
			break;
		case '3':
			url = 'PainelMusico.html';
			break;
	}
	if (url) {
		parent.gotoUrl(url.html);
	}
}