
// ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

function quoted(text)
{
	return "\"" + text + "\"";
}

// ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

function formatHtml(text)
{
	if (text == undefined)
	{
		return text;
	}	

	text = text.replace(/_sp_/g,'&nbsp;'); // g: global, replace all occurences.

	text = text.replace(/_br_/g,'<br>');

//	text = text.replace(/è/g,'&egrave;');

	text = text.replace(/_ahref_1_/g,'<a href=\"');
	text = text.replace(/_ahref_2_/g,'\">');
	text = text.replace(/_ahref_3_/g,'</a>');

	text = text.replace(/_email_/g,'lucas@vibrail.com');

//	text = text.replace(/_siteRootDir_/g,siteRootDir);

	return text;
}

// ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

function formatUrl(text)
{
	if (text == undefined)
	{
		return text;
	}

	text = text.replace(/\&/g,'%26'); // g: global, replace all occurences.

	return text;
}

// ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

// ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

