$title" . "\n"; } function OptionRadio( $title, $name, $data, $default, $show = '', $store = '', $sep = '   ' ) { echo "$title"; foreach( $data as $key => $opt ) { if ( $store == '' ) { $vl = $key; } else{ $vl = $opt[$store]; } if ( $show == '' ) { $nm = $opt; } else{ $nm = $opt[$show]; } if ( $nm <> '') { echo "$nm $sep\n"; } } echo "\n"; } function OptionText( $title, $name, $value, $size ) { echo "$title" . "" . "\n"; } function OptionCheck( $title, $name, $value, $comment ) { if ( $value ) $chk = 'checked'; echo "$title" . " $comment" . "\n"; } ?>