function toggle_collections(o,c,i)
{
	if (o)
	{
		result=document.getElementById("form_col");
		if (result)
		{
			if(o.checked)
				result.value = result.value | o.value;
			else
				result.value = result.value & ~o.value;
				
			url = '/fashion/mini-web-sites/fashion-brands';
			if (c) url = url + '/' + c;
			if (i) url = url + '/' + i;
			if (result && (result.value != 0)) url = url + '/' +  result.value;
			document.location = url;
		}
	}
}
/*
function view_collections()
{
	result=document.getElementById("form_col");
	url = new String(document.location);
	
	pos = url.indexOf('&');
	url = url.substring(0,pos);
	
	if (result && (result.value != 0))
	{
		l = url.length;
		c = url.charAt(l - 1);
		if ( c!='/') url = url + "/";
		url = url + result.value;
	}
	document.location = url;
}
*/
