/* ********************************************************* */
/* Inclui um arquivo SWF									 */
/* ********************************************************* */

function writeSwf(nome, width, height)
{
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+width+'" height="'+height+'">');	
	document.writeln('<param name="movie" value="swf/'+nome+'.swf" />');
	document.writeln('<param name="quality" value="high" />');
	document.writeln('<embed src="swf/'+nome+'.swf" width="'+width+'" height="'+height+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>');
	document.writeln('</object>');
}

/* ********************************************************* */
/* Define os link para as internas							 */
/* ********************************************************* */

function links(area)
{
	window.location.href = "index.php?area="+area;
}

/* ********************************************************* */
/* Validação do formulário de Fale Conosco					 */
/* ********************************************************* */

function validaContato()
{
	try {
		var erro = new Array(0);
		f = document.getElementById("frmContato");
		
		if ( isEmpty(f.nome) )				erro.push('Nome');
		if ( !isEmail(f.email) )			erro.push('E-mail');
		if ( isEmpty(f.ddd) )				erro.push('DDD');
		if ( isEmpty(f.telefone) )			erro.push('Telefone');
		if ( f.departamento.value == '' )	erro.push('Departamento');
		if ( f.assunto.value == '' )		erro.push('Assunto');
		if ( isEmpty(f.mensagem) )			erro.push('Mensagem');
						
		if ( erro.length ) {
			alert('Preencha corretamente o(s) campo(s): \n - ' + erro.join(' \n - '));
			return false;
		}
		return true;
	
	} catch (e) {
		
		alert(e.message);
		return false;
	}
}

/* ********************************************************* */
/* Abre popUp												 */
/* ********************************************************* */

function openWin( url )
{
	var largura = 344;
	var altura = 405;
		
	var e=(screen.width - largura)/2;
	var t=(screen.height - altura)/2;
	
	pp = window.open('popups/'+url+'.php','janela','top='+t+',left='+e+',width='+largura+',height='+altura+',scrollbars=1, status=1');
	if (window.focus) {pp.focus()}
}