function RemoveCharacters(Campo) {
		var specialChars = new Array();

		   specialChars[0] = 225;
		   specialChars[1] = 224;	
		   specialChars[2] = 227;
		   specialChars[3] = 226;
		   specialChars[4] = 193;
		   specialChars[5] = 192;
		   specialChars[6] = 195;
		   specialChars[7] = 194;
		   specialChars[8] = 232;
		   specialChars[9] = 233;
		   specialChars[10] = 234;
		   specialChars[11] = 235;
		   specialChars[12] = 200;
		   specialChars[13] = 203;
		   specialChars[14] = 201;
		   specialChars[15] = 202;
		   specialChars[16] = 237;
		   specialChars[17] = 239;
		   specialChars[18] = 207;
		   specialChars[19] = 205;
		   specialChars[20] = 243;
		   specialChars[21] = 245;
		   specialChars[22] = 244;
		   specialChars[23] = 211;
		   specialChars[24] = 212;
		   specialChars[25] = 213;
		   specialChars[26] = 250;
		   specialChars[27] = 252;
		   specialChars[28] = 218;
		   specialChars[29] = 220;
		   specialChars[30] = 231;
		   specialChars[31] = 199;
		   specialChars[32] = 241;
		   specialChars[33] = 209;
		   specialChars[34] = 255;
		   specialChars[35] = 231;
		   specialChars[36] = 199;
		   var commonChars = new Array();
		   commonChars[0] = 97;
		   commonChars[1] = 97;
		   commonChars[2] = 97;
		   commonChars[3] = 97;
		   commonChars[4] = 65;
		   commonChars[5] = 65;
		   commonChars[6] = 65;
		   commonChars[7] = 65;
		   commonChars[8] = 101;
		   commonChars[9] = 101;
		   commonChars[10] = 101;
		   commonChars[11] = 101;
		   commonChars[12] = 69;
		   commonChars[13] = 69;
		   commonChars[14] = 69;
		   commonChars[15] = 69;
		   commonChars[16] = 105;
		   commonChars[17] = 105;
		   commonChars[18] = 73;
		   commonChars[19] = 73;
		   commonChars[20] = 111;
		   commonChars[21] = 111;
		   commonChars[22] = 111;
		   commonChars[23] = 79;
		   commonChars[24] = 79;
		   commonChars[25] = 79;
		   commonChars[26] = 117;
		   commonChars[27] = 117;
		   commonChars[28] = 85;
		   commonChars[29] = 85;
		   commonChars[30] = 231;
		   commonChars[31] = 67;
		   commonChars[32] = 110;
		   commonChars[33] = 78;
		   commonChars[34] = 121;
		   commonChars[35] = 99;
		   commonChars[36] = 67;

		  
		   var TempLog = "";
		   for (var i=0; i < Campo.length; i++)
		   {
		      var specialChar=false;
		      var commonChar=0;
		      Carac = Campo.charCodeAt (i);
		      for (var j=0; j < 37; j++) {
		          if (Carac == specialChars[j]) {
		             specialChar=true;
		             commonChar=commonChars[j];
		          }
		      }

		      if (specialChar) {
			 TempLog += String.fromCharCode(commonChar);
		      }
		      else {
		         TempLog += String.fromCharCode(Carac);
		      }

		   }

		return (TempLog);
	}
