print "<div class=\"settings-help\"><blockquote><h3><strong>@TR<<Short help>>:</strong></h3>" form_help form_help_link "</blockquote></div>"
print "<div style=\"clear: both\"> </div></div>"
}
+
+function textinput(name, value) {
+ return "<input type=\"text\" name=\"" name "\" value=\"" value "\" />"
+}
+
+function button(name, caption) {
+ return "<input type=\"submit\" name=\"" name "\" value=\"@TR<<" caption ">>\" />"
+}
+
+function sel_option(name, caption, default, sel) {
+ if (default == name) sel = " selected=\"selected\""
+ else sel = ""
+ return "<option value=\"" name "\"" sel ">" caption "</option>"
+}