function txtswitch()
{
	if ($('#txtch').attr('checked'))
	{
		$('#texteditor').css('display', 'block');
	}
	else
	{
		$('#texteditor').css('display', 'none');
	}
}
