window.addEvent('domready', function() {
 
	/**
	 * That CSS selector will find all <a> elements with the
	 * class boxed
	 *
	 * The example loads the options from the rel attribute
	 */
	SqueezeBox.assign($$('a.boxed'), {
		parse: 'rel'
	});
 
});
function enviardados(){

if(document.contato.nome.value=="")
{
alert( "Preencha campo NOME corretamente!" );
document.contato.nome.focus();
return false;
}


if( document.contato.email.value=="" || document.contato.email.value.indexOf('@')==-1 || document.contato.email.value.indexOf('.')==-1 )
{
alert( "Preencha campo E-MAIL corretamente!" );
document.contato.email.focus();
return false;
}

return true;
}
