function lang(idx) {
var str = new Array(
"Are you sure you want to delete",
"Are you sure you want to delete the picture",
"Coordinates must contain at least two cardinal letters",
"Could not understand your coordinates. Please use the following syntax: ",
"The field *** is empty, which is not allowed",
"The field *** is not a number or is negative",
"The field *** is too large. Please enter a number between 0 and",
"Latitude",
"Longitude",
"Degrees",
"Minutes",
"Decimal",
"Email address",
"Cache-name",
"GC-Code",
"Waypoint description",
"Accuracy",
"Username",
"Password",
"Please enter the field *** using 3 digits.",
"The code you have entered is incorrect. Please try again (remember, code is 5 digits).",
"You selected a *** file; only jpg/gif/png files are supported",
"The email-address is invalid.",
"Incorrect GC-code. Please verify that it begins with GC and is at least 3 characters long.",
"The email-addresses do not match. Please try again.",
"The passwords do not match. Please try again.",
"Are you sure you want to reset the stats for ***");
return str[idx];
}