function bcmsBrowser(field_name, url, type, win)
{
    var cmsURL = "http://ecologicltd.com/index.php?/tinymce_image_add";

    tinyMCE.activeEditor.windowManager.open
    (
      {
          file : cmsURL,
          title : 'Image Upload',
          width : 250,  // Your dimensions may differ - toy around with them!
          height : 100,
          resizable : "yes",
          close_previous : "no"
      },
      {
          window : win,
          input : field_name
      }
    );
    return false;
}

