function initTinyMCE(strWidth, strHeight, strLang, strElement)
{
	
	tinyMCE.init({
		mode: 'exact',
		elements: strElement,
		language : strLang,
		width: strWidth,
		height: strHeight,
		theme: 'advanced',
		plugins: 'emotions',
		theme_advanced_buttons1: 'bold,italic,underline,forecolor,separator,bullist,numlist,separator,undo,redo,link,unlink,separator,emotions',
		theme_advanced_buttons2: '',
		theme_advanced_buttons3: '',
		theme_advanced_toolbar_location: 'top',
		theme_advanced_toolbar_align : 'left',
		browsers: 'msie,gecko,opera',
		relative_urls: false,
		convert_fonts_to_spans : true
	});
}	
//Sækja stíla með Ajax
function ajax_getStyles(type) {
		var sReturn;
		$.ajax({ 
		    
				type: "POST", 
				url: "/admin/system/frontend/assets/css/geteditorstyles.asp?type="+type,
				async: false,
				success: function(msg){
					sReturn = unescape(msg);
				}
			});
			return sReturn;
}
