					function validarDatosBusquedaGoogle() {
						var texto = document.busquedaGoogle.q.value;
						
						if (texto == "") {
							window.alert("Debes introducir el texto a buscar");
							return false;
						}
						
						texto = texto.replace("á", "a");
						texto = texto.replace("é", "e");
						texto = texto.replace("í", "i");
						texto = texto.replace("ó", "o");
						texto = texto.replace("ú", "u");
						texto = texto.replace("Á", "A");
						texto = texto.replace("É", "E");
						texto = texto.replace("Í", "I");
						texto = texto.replace("Ó", "O");
						texto = texto.replace("Ú", "U");
						texto = texto.replace("ñ", "n");
						texto = texto.replace("Ñ", "N");
						document.busquedaGoogle.q.value = texto;
						return true;
					}
