// 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 = "
"; return retstr; } // end function