	function getColorPickerURL(form,attribute,remove_no_color_option)
	{
		var url = '/products/color_picker.php?product=37';
		if (attribute) url += '&attribute='+attribute;
		if (remove_no_color_option) url += '&no_no_color=1';

	// Get the inks, foils, pms, and cmyk
		var len = form.elements.length;
		for (var i=0; i < len; i++)
		{
			var el = form.elements[i];
			if (el.value != '')
			{
				var cur = el.name;
				if (cur == '1' || cur == '1[]' || cur == '39' || cur == '39[]' || cur == '68' || cur == '68[]' || cur == '12' || cur == '12[]' || cur == attribute || cur == attribute+'[]')
					url += '&'+cur+'='+el.value;
			}
		}

	// Make sure we're forcing it to reload the url since the javascript changes
		if (navigator.appName.indexOf("Internet Explorer") > -1)
		{
			url +=  '&' + ((new Date()).getTime());
		}
		return url;
	}
