Studio.Effect.Outlines = function()
{
    this.aColor     = new Array();
    this.aThickness = new Array();
};

Studio.Effect.Outlines.prototype = 
{
    aColor     : null,
    aThickness : null,
    
    getUrlAttach : function()
    {
        var sUrl = '';
        sUrl += 'effect_outlines/1/';

        for (var i = 0; i < 4; i++)
        {
        	if ('transparent' != this.aColor[i] && null != this.aColor[i])
        	{
        		sUrl += 'outlines_color' + i + '/'  + new RGBColor(this.aColor[i]).toHex() + '/';
        		sUrl += 'outlines_thickness' + i + '/'  + this.aThickness[i] + '/';
        	}
        }

        return sUrl;
    }
};