	function HTMLAreaInit(it){
		var config = new HTMLArea.Config(); 
			config.toolbar = [
			[
			"fontname" ,"space","fontsize" ,"lefttoright", "righttoleft", "space" ,"bold", "italic", "underline","strikethrough", 
			"subscript", "superscript", "separator",	"justifyleft", "justifycenter", "justifyright", "justifyfull"] ,
[

			 "outdent", "indent", "separator","forecolor", "hilitecolor" ,"createlink","insertimage","inserthorizontalrule","inserttable","separator","htmlmode"
]
		];

config.width = '100%';
config.height = '300px';
config.statusBar=false;
		config.pageStyle ='body {  direction:rtl; font-family: Tahoma; font-size:9pt;} ' ;
		
		if (it==1)
		    HTMLArea.replace('avapost', config);
        else
		if ( document.getElementById ("avapostmore") !=null)
			HTMLArea.replace('avapostmore', config);
		
	}

