function fcMsgCheckYourData(){
	return "Check your delivery address data and your customer account";
}

function fcMsgOkAccountRegBasket(){
	return "Continue and register my address";
}

function fcErrorMsgFieldNoDefined() {
  return "undefined field in form";
}

function fcErrorMsgHeader() {
  return "Your request was not successful.<br />Check the folowing field(s):";
}

function fcErrorMsg_compulsory() {
  return "it is obligatory";
}

function fcErrorMsg_isSelected() {
  return "not selected";
}

function fcErrorMsg_isSelectedValue() {
  return fcErrorMsg_isSelected();
}

function fcErrorMsg_isChecked() {
  return "not checked";
}

function fcErrorMsg_isEmail() {
  return "Email address incorrect";
}

function fcErrorMsg_isInteger() {
  msg = "";
  if (arguments[0] != null) msg = "must be higher than " + arguments[0];
  if (arguments[1] != null) {
    if (msg != "") msg += " and ";
    msg += "must be lower than " + arguments[1];
  }
  if (msg == "") msg = "incorrect numeric value";
  return msg;
}

function fcErrorMsg_isDecimal() {
  msg = "";
  if (arguments[0] != null) msg = "must be higher than " + arguments[0];
  if (arguments[1] != null) {
    if (msg != "") msg += " and ";
    msg += "must be lower than " + arguments[1];
  }
  if (msg == "") msg = "incorrect decimal value";
  return msg;
}

function fcErrorMsg_isDate() {
  return "Incorrect date format";
}

function fcErrorMsg_isIP() {
  return "Incorrect IP";
}

function fcErrorMsg_isPath() {
  return "Inccorrect path";
}

function fcTxtBttnYes()
{
	return "Yes";
}
function fcTxtBttnNo()
{
	return "No";
}
function fcTxtBttnAccept()
{
	return "Accept";
}
function fcTxtBttnConfirm()
{
	return "Confirm";
}
function fcTxtBttnCancel()
{
	return "Cancel";
}
function fcTxtWait()
{
	return "Wait a moment please...";
}
function fcTxtEmail()
{
	return "email";
}
function fcTxtPassword()
{
	return "password";
}
function fcTxtWrongPassword()
{
	return "Your password is wrong";
}
function fcTxtAddProduct()
{
	return "Add to basket:";
}

function fcTxtAddedProduct()
{
	return "added to basket";
}
function fcTxtNoAddedProduct()
{
	return "Could not add the product to basket";
}
function fcTxtConfirmNewAccount()
{
	return "There is no user with that email. Do you want to create a new account?";
}
function fcTxtNoSelectCond()
{
	return "You must select a conditioning";
}
