//funsión para redimensionar iframe
function resizeIframe(idIframe)
{
var miIframe, alturaPagina;
miIframe = document.getElementById( 'contenidos' );
alturaPagina = miIframe.contentWindow.document.body.scrollHeight+40;
miIframe.style.height = alturaPagina;
}
function validoContacto(){
	var errores = false;
	var txtError = "";
	nombre = document.getElementById( 'nombre' ).value.replace( /\s/g, '' );
	email = document.getElementById( 'email' ).value.replace( /\s/g, '' );
	mensaje = document.getElementById( 'mensaje' ).value.replace( /\s/g, '' );
	if( !nombre ){
		errores = true;
		txtError += "\n- Debe escribir un nombre";
	}
	if( !email ){
		errores = true;
		txtError += "\n- Debe escribir un e-mail";
	}
	if( email != ''){
		if( email.indexOf('@') < 1 || 
			email.indexOf('.') < 1 || 
			email.indexOf('@') > email.length - 6 || 
			email.indexOf('@') != email.lastIndexOf('@') || 
			email.lastIndexOf('.') == email.length - 1 ||
			email.lastIndexOf('.') < email.indexOf('@') ){
				errores = true;
				txtError += "\n- Debes ingresar una cuenta de email válida";
		}
	}
	if( !mensaje ){
		errores = true;
		txtError += "\n- Debe escribir un Mensaje";
	}
	if( errores == true ){
		alert( txtError );
		return false;
	} else {
		document.frmContacto.submit();
	}
}
