//this function includes all necessary js files for the application
function include(file){

  var script  = document.createElement('script');
  script.src  = file;
  script.type = 'text/javascript';
  script.defer = true;
  document.getElementsByTagName('head').item(0).appendChild(script);
}

/* include any js files here */
include('/kernel/front/js/functions.js');

function validateSendMailForm(theForm, lang) {
	f=document.theForm;
	field = f.elements['msg[frendemail][text]'];
	if (lang=='gr') txt=" Email φίλου";
	else txt=" Friends email";
	if (!validEmail(field, txt, true, lang)) return false;
	field = f.elements['msg[youremail][text]'];
	if (lang=='gr') txt=" Το Email σας";
	else txt=" Your email";
	if (!validEmail(field, txt, true, lang)) return false;
	return true;
}
