	var v = 'check';
	function select_check(v)
	{ 
		if(v == 'check'){ $("ul#genre_list").find("input[@type$='checkbox']").each(function(){this.checked = true;});$("ul#genre_list2").find("input[@type$='checkbox']").each(function(){this.checked = true;});}
		else if(v == 'not'){$("ul#genre_list").find("input[@type$='checkbox']").each(function(){this.checked = false;});$("ul#genre_list2").find("input[@type$='checkbox']").each(function(){this.checked = false;});}		
	}
$(document).ready(function(){ $("#genre_select_all").click(function(){select_check(v);if(v == 'check'){v= 'not';}else{v = 'check';}});});

	function OpenNewWindow(location,param,width,height)
	{
		window.open(location + '?' + param , ''
				, 'location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no,width='
					+ width	+',height='	+ height);
	}