// Verificar campos form
function cfFaleConnosco() {
	missinginfo = "";

	if (document.getElementById("nome").value == "") {
		missinginfo += "\n     -  Nome";
	}
	if ((document.getElementById("email").value == "") || (document.getElementById("email").value.indexOf('@') == -1) || 	(document.getElementById("email").value.indexOf('.') == -1)) {
		missinginfo += "\n     -  E-mail";
	}
	if (document.getElementById("msg").value == "") {
		missinginfo += "\n     -  Assunto";
	}

	if (missinginfo != "") {
		missinginfo ="Os seguintes dados estao invalidos:\n" +
		missinginfo + "\n\nPor favor preencha os dados correctamente.";
		alert(missinginfo);
		return false;
	}
	else return true;
}

// Popups
function faleConnosco(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0, scrollbars=0, location=0, statusbar=0, menubar=0, resizable=0, width=400, height=420, left=390, top=200');");
}

function centroComercial(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0, scrollbars=1, location=0, statusbar=0, menubar=0, resizable=0, width=400, height=420, left=390, top=200');");
}

function sonosportsTV(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0, scrollbars=1, location=0, statusbar=0, menubar=0, resizable=0, width=370, height=380, left=390, top=200');");
}