调用的代码如下,但是显示第一列很小。求解决办法


<script type="text/javascript" src="/e/js/zdyform.js"></script>
<form name="feedback" method="post" Enctype="multipart/form-data" action="/e/aspx/post.aspx">
<table border=1 cellpadding=5 cellspacing=0 align=center width=28%><tr><td align=right>分类 </td>
<td><select name="sort" id="sort">
<option value="">选择分类</option>
<option value="555">咨询</option>
<option value="556">建议</option>
<option value="557">投诉</option>
<option value="558">其他</option>
</select> </td>
</tr>
<tr><td align=right>主题 <span style="color:#ff0000">*</span></td><td><input type=text name="title" id="title" value="" style="width:200px" maxlength="50" ></td></tr>
<tr><td align=right>联系人 <span style="color:#ff0000">*</span></td><td><input type=text name="pa_truename" id="pa_truename" value="" style="width:200px" maxlength="50" ></td></tr>
<tr><td align=right>联系电话 <span style="color:#ff0000">*</span></td><td><input type=text name="pa_tel" id="pa_tel" value="" style="width:200px" maxlength="50" ></td></tr>
<tr><td align=right>邮箱 </td><td><input type=text name="email" id="email" value="" style="" onblur="if(!IsEmail(this.value)){alert('无效的邮件格式');document.letter.fbk_email.value=''}" maxlength="50" ></td></tr>
<tr><td align=right>内容 </td><td><textarea name="content" id="content" style="250" ></textarea></td></tr><script type="text/javascript" src="/e/incs/fckeditor/fckeditor.js"></script><script type="text/javascript">var FCKeditor = new FCKeditor("content");FCKeditor.BasePath = "/e/incs/fckeditor/";FCKeditor.Height = 400;FCKeditor.Config["LinkBrowser"]= false;FCKeditor.Config["ImageBrowser"]=false;FCKeditor.Config["FlashBrowser"]=false;FCKeditor.Config["LinkUpload"] = false;FCKeditor.Config["ImageUpload"] =false;FCKeditor.Config["FlashUpload"] =false;FCKeditor.ToolbarSet ="Small";FCKeditor.ReplaceTextarea();</script>
<tr><td align=right>验证码<span style="color:#ff0000">*</span></td><td><input type=text name="vcode" id="vcode" maxlength=4 size=4> <img src="/e/aspx/yzm.aspx" onclick=Code_Change("vcode_img") align=absmiddle border=0 id="vcode_img" style="cursor:pointer" alt="点击更换"></td></tr>
<tr><td colspan=2 align=center><input type="hidden" name="checked" value="0"><input type="hidden" name="showcode" value="0"><input type="hidden" name="to" value=""><input type="hidden" name="mailto" value=""><input type="hidden" name="mailreply" value=""><input type="hidden" name="mailsubject" value=""><input type="hidden" name="mailbody" value=""><input type="hidden" name="insertdatabase" value="1"><input type="hidden" name="siteid" value="1"><input type="hidden" name="formtable" value="feedback"><input type="hidden" name="mustname" value="主题,联系人,联系电话,"><input type="hidden" name="mustfield" value="title,pa_truename,pa_tel,"><input type="hidden" name="musttype" value="text,text,text,"><input type="button" class="bt" value=" 提交 " onclick="return set_feedback()"> <input type="reset" value=" 重设 " class="bt"></td></tr></table>
</form>
<script type="text/javascript">
function set_feedback()
{
document.forms["feedback"].mailto.value="";
document.forms["feedback"].mailreply.value="";
document.forms["feedback"].mailsubject.value="";
document.forms["feedback"].mailbody.value="";
return Check_ZdyForm("feedback");
}
function feedback_zdycheck(){
return true;
}
</script>