Passing tags to dialog

Passing tags to dialog

Hi all,

I have an odd situation here that I can't figure out.  I am opening dialog via image
  1. <img src="/Images/Icons/24.png" align="absmiddle" width="12" border="0" title="Edit News" name="News.cfm?ID=2#" vsize="450"  hsize="700" sButton="Save" cButton="Cancel">
Everything works fine cept the "hsize" tag that controls the width of the dialog. I tried different tags even use "vsize" tag that works fine for height but dialog width stays at default.  Anyone has any ideas?  Btw if I set height to a value then it works (height: 700,).

  1. .dialog({
                            title: $link.attr('title'),
                            width: $link.attr('hsize'),
                            height: $link.attr('vsize'),
                            modal: true,
                            buttons: buttons
                        });