// JavaScript Document
function getHTMLFromTextAreEditor( text )
{
	if ( typeof( text ) != "string" )
		text = text.toString() ;
	text = text.replace("&sbquo;","'") ;
	text = text.replace("&amp;","&");
	text = text.replace("&quot;",'"');
	text = text.replace("&lt;","<");
	text = text.replace("&gt;",">") ;
	return text ;
}
