tinyMCE.init({ 
	auto_focus : "mce_editor_0",
	theme : "advanced",
	mode : "exact",
	elements : "pr_commentarea",
	theme_advanced_disable : "justifyright,justifyfull,separator,sub,sup,charmap,visualaid,removeformat,hr,styleselect,formatselect",  
	theme_advanced_buttons1_add : "styleselect,fontsizeselect,separator,link,unlink,image,separator,cleanup,code",  
	theme_advanced_buttons2 : "",  
	theme_advanced_toolbar_location : "top",
	mode : "textareas",
	plugins : "safari"
});
	
function validate() {
		var errors = "";
		if (document.post.subject.value=="") { errors = errors + "- Hey, you need to put a subject!\n"; }
		if (errors != "") {
			alert("Please fix the following errors:\n" + errors);
			return "failed";
	}
};
	
function insert_smile (text) {
	text = " " + text + " "; document.comm.body.value  += text; document.comm.body.focus();
};
