' . '0-33% Hackers, 34-67% Developers, 68-100% Users' . ' '; } function progressBar( $name, $pct, $comments ) // display a 0-100% progress meter { $newPct = $pct - ($pct % 2); $i = $pct; $j = 100 - $newPct; $result = ''; $result .= '' . $name . ' '; $result .= '' . $pct . '% Complete'; for ( ; $i >= 20 ; $i -= 20 ) { $result .= ' '; } for ( ; $i >= 10 ; $i -= 10 ) { $result .= ' '; } for ( ; $i >= 2 ; $i -= 2 ) { $result .= ' '; } for ( ; $j >= 20 ; $j -= 20 ) { $result .= ' '; } for ( ; $j >= 10 ; $j -= 10 ) { $result .= ' '; } for ( ; $j >= 2 ; $j -= 2 ) { $result .= ' '; } $result .= ' ' . $comments . ''; echo $result; } /* Sections */ function isFocused( $name, $newname ) { return ( strToLower( $name ) == strToLower( $newname ) ) ? 1 : 0; } function iconLink ( $url, $img, $desc, $border ) { echo '' . $desc . ' '; } /* Menu functions */ // Create a Menu item function menuItemLink( $url, $desc ) { echo '' . $desc . '
'; } // Create a Menu Section header function menuSectionHeader( $name, $fgColor , $bgColor, $intBgColor ) { echo "\n' . '' . ' ' . ' ' . ' ' . ' ' . ' ' . ' ' . '
' . '
' . ' ' . $name . '' . '
'; } // Create a Menu Section footer function menuSectionFooter() { echo '
'; } /* Table functions */ // function tableBoxHeader( $bgColor, $intBgColor ) { echo '' . ' ' . ' ' . ' ' . '
' . ' '; } function tableBoxFooter() { echo '
' . '
'; } function tableTitle($name, $cols, $bgColor) { echo ' ' . ' ' . ' ' . $name . '' . ' ' . ' '; } function tableHeader( $cols, $fgColor, $bgColor ) { echo ''; } function tableFooter() { echo '
'; } function tableNewsItem( $date, $user, $text ) { echo '
Posted on ' . $date . ' by ' . $user . '
' . '
' . $text . '
' . '
'; } function tableSpacer( $height, $width, $cols, $bgColor ) { echo '' . ' ' . ''; } ?>