$(document).ready(
	function() {
		$('.tlist tr').click(function(){( $(this).hasClass('clicked')) ? $(this).removeClass('clicked') : $(this).addClass('clicked'); });
		$('.tlist tr').mouseover(function(){ $(this).addClass('hover'); }).mouseout(function() { $(this).removeClass('hover'); });
		//$('.tlist tr:nth-child(odd)').addClass('switch');
	}
)

function open_wysiwyg_editor(textarea)
{
	var file = '/wysiwyg_editor.php';
	currentTextArea = textarea;
	var edit = window.open(file, 'editor', 'width=780,height=550,resizable=yes');
	edit.focus();
}

function check_all(form_name, name_box, condition)
{ 
	for (i = 0; i < document.forms[form_name].elements.length; i++)
	{
		var item = document.forms[form_name].elements[i];
		if (item.name == name_box)
		{
			item.checked = condition;
		}
	}
}

