var ERROR_MESSAGES = new Array(
    'The data are incorrect, please check them.',
    'Please enter contact email.',
    'Invalid email.',
    'Please enter your login.',
    'Invalid login.',
    'Please enter the Post Code.',
    'Invalid Post Code.',
	'Please enter your password',
	'Do you really want to cancel your registration to HotelesMonte.com?',
	'The new password and the one repeated must be the same.'
);

function getErrorMessage(code)
{
  if(code>ERROR_MESSAGES.length-1) code = 0;
  return ERROR_MESSAGES[code];
}
