%
// utility to convert XML entities to HTML entities
function encode($string)
{
$entities = array(' & ' => ' & ', '&' => ' & ',
'<' => '<', '>' => '>',
''' => "'", '"' => '"');
$string = strtr(utf8_decode($string), $entities);
return htmlentities($string, ENT_QUOTES);
}
// utility to convert XML entities to regular characters
function xml_decode($string, $space = true)
{
if ($space)
$entities = array(' & ' => ' & ', '&' => ' & ',
'<' => '<', '>' => '>',
''' => "'", '"' => '"');
else
$entities = array('&' => '&', '&' => '&',
'<' => '<', '>' => '>',
''' => "'", '"' => '"');
return strtr(utf8_decode($string), $entities);
}
// utility to remove accents from characters
function accents($string)
{
$accents = array('à' => 'a', 'á' => 'a', 'â' => 'a', 'ã' => 'a',
'ä' => 'a', 'å' => 'a',
'ç' => 'c',
'è' => 'e', 'é' => 'e', 'ê' => 'e', 'ë' => 'e',
'ì' => 'i', 'í' => 'i', 'î' => 'i', 'ï' => 'i',
'ò' => 'o', 'ó' => 'o', 'ô' => 'o', 'õ' => 'o',
'ö' => 'o',
'ù' => 'u', 'ú' => 'u', 'û' => 'u', 'ü' => 'u');
$string = str_replace(''', "'", $string);
$string = htmlentities($string, ENT_NOQUOTES, 'UTF-8');
return strtr($string, $accents);
}
%>
Race By Race - Photo Gallery 2005
|
|
|
Gallery 2005
Race photography from Champ Car, Formula One, ALMS, and IndyCar
|
|
Gran Premio de Mexico |
---|
| Telmex Tecate Gran Premio Mexico, Autodromo Hermanos Rodriguez, Mexico City, November 4-6, 2005 |
Fleet Week |
---|
| Red Bull Air Races and Blue Angels Display in San Francisco, California, October 7-8, 2005 |
Sonoma Indy Grand Prix |
---|
| The IRL Argent Mortgage Indy Grand Prix at Infineon Raceway, Sonoma, California, August 26-28, 2005 |
Grand Prix of Denver |
---|
| The Champ Car Centrix Financial Grand Prix of Denver, Colorado, August 12-14, 2005 |
San Jose Grand Prix |
---|
| The Champ Car Taylor Woodrow Grand Prix of San Jose, California, July 29-31, 2005 |
Grand Prix of Sonoma |
---|
| The American Le Mans Series Infineon Technologies Grand Prix of Sonoma, California, June 15-17, 2005 |
Infineon IndyCar Test |
---|
| The IRL IndyCar Series test on the road course at Infineon Raceway, Sonoma, California, April 12, 2005 |
Green Flag Tour |
---|
| The IRL IndyCar Series "Green Flag Tour" visits driver Bryan Herta in Oakland, California, February 23, 2005 |
|
|
|
|
©2005-2008 TeamJasper. Last
updated Tuesday, May 27, 2008.
Privacy Policy.
|