// js_myforms.js /* creates opening and closing form tags to fit 360 pixels wide column */ // FORM START FUNCTION // use this to create opening form tags function form_start(form_width,form_title,form_action,form_float,form_name) { // do some calcs var inner_width = (form_width - 32); var form_width_class = 'wid'+form_width; var inner_width_class = 'wid'+inner_width; retstr = "
"+form_title+"
"; // return the HTML code string created return retstr; }; // end form start function // FORM END FUNCTION // use this to create end form tags function form_end() { var retstr ="
"; return retstr; } // end function