//***********************************************************************
// Funciones que utilizamos en el JS
//--------------------------------------------------------------------

function fBorrar(){

	document.frmRecomiendanos.txtTuNombre.value="";
	document.frmRecomiendanos.txtTuEmail.value="";
	document.frmRecomiendanos.txtSuNombre.value="";
	document.frmRecomiendanos.txtSuEmail.value="";
	document.frmRecomiendanos.txtMensaje.value="";

}


function fAceptar(istrIdioma, icorreo,nomComunidad){
	// Definimos las variables que utilizaremos
	var strTuNombre;
	var strTuEmail;
	var strSuNombre;
	var strSuEmail;
	var strMensaje;
	var strTextoConozca;
	var strTextoRecomendacion;
	var strTextoA;
	var strTextoB;
	
	
	//Cogemos los datos
	strTuNombre=document.frmRecomiendanos.txtTuNombre.value;
	strTuEmail=document.frmRecomiendanos.txtTuEmail.value;
	strSuNombre=document.frmRecomiendanos.txtSuNombre.value;
	strSuEmail=document.frmRecomiendanos.txtSuEmail.value;
	strMensaje=document.frmRecomiendanos.txtMensaje.value;
	
	
	
	if (strTuNombre == ""){
		if (istrIdioma=="eu"){
			alert("Idatzi Zure Izena, mesedez.");
		}
		else{
			alert("Introduce tu Nombre, por favor.");
		}
		return;
	}

	if (strTuEmail == ""){
		if (istrIdioma=="eu"){
			alert("Idatzi helbide elektronikoa, mesedez.");
		}
		else{
			alert("Introduce tu E-mail, por favor.");
		}
		return;
	}

	if (strSuNombre == ""){
		if (istrIdioma=="eu"){
			alert("Idatzi zure lagunaren Izena, mesedez.");
		}
		else{
			alert("Introduce el Nombre de tu amigo, por favor.");
		}
		return;
	}

	if (strSuEmail == ""){
		if (istrIdioma=="eu"){
			alert("Idatzi zure lagunaren helbide elektronikoa, mesedez.");
		}
		else{
			alert("Introduce el E-mail de tu amigo, por favor.");
		}
		return;
	}
	if (strMensaje == ""){
		if (istrIdioma=="eu"){
			alert("Idatzi Mezua , mesedez.");
		}
		else{
			alert("Introduzca Mensaje , por favor.");
		}
		return;
	}
	if (istrIdioma=="eu"){
		strTextoConozca=" Gure elkartea ezagutu: ";
	}
	else{
		strTextoConozca=" Conozca nuestra comunidad: ";
	}

	if (istrIdioma=="eu"){
		strTextoRecomendacion=" Gomendioak: ";
	}
	else{
		strTextoRecomendacion=" Recomendaciones de : ";
	}

	if (istrIdioma=="eu"){
		strTextoA="(e)k ";
	}
	else{
		strTextoA=" a ";
	}
	if (istrIdioma=="eu"){
		strTextoB="(r)i ";
	}
	else{
		strTextoB="";
	}


	var strMailto ="mailto:"+ strSuEmail +"?cc="+ icorreo +";"+ strTuEmail +"&subject=" + strTextoRecomendacion +  strTuNombre + strTextoA + strSuNombre + strTextoB + "&body=" + strMensaje + strTextoConozca +  (" www.comunidades.kzgunea.net/" + nomComunidad + "/" + istrIdioma);
	window.location = strMailto;

}


