function qs_graphics_image(img, alt, width, height)
{
   wd("<center>"); 
   wd("<img src='" + qs_path + "/img/trans.gif' height=18>"); 
   wd("<table bgcolor='" + qs_page_color + "' width='" + (width + 6) +  "' " + 
      "       height='" + (height + 6) + "'> "); 
   wd("   <tr><td align=center valign=middle>"); 
   wd("       <img src='" + img + "' alt='" + alt + "' " + 
      "            width='" + width + "' height='" + height + "'>");
   wd("   </td></tr>"); 
   wd("</table>"); 
   wd("</center>"); 
   html();
}

