/**
 *	JS code for diamonds pages
 *	@version $Id: diamonds.js 464 2008-12-12 14:39:23Z alex $
 */

function popup(url, name)
{
	window.open(url, name, 'width=600,height=600,resizable=yes');
	return false;
}

//We need this function as IE has bug with <label><image /></label>
function check(id)
{
	$('#' + id).attr('checked', $('#' + id).attr('checked') ? '' : 'checked');
}

function checkAllCategories(on)
{
	$('#search-diamonds :checkbox').each(
		function ()
		{
			if (this.name == 'CATEGORY[]')
				this.checked = on;
		}
	);
}