%
// 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 2007
|
|
|
Gallery 2007
Race photography from Champ Car, Formula One, ALMS, and IndyCar
|
|
Gran Premio Tecate |
---|
| The Champ Car Gran Premio Tecate at Autodromo Hermanos Rodriguez, Mexico City, November 9-11, 2007 |
Lexmark Indy 300 |
---|
| The Champ Car Lexmark Indy 300 in Surfer's Paradise, Queensland, Australia, October 19-21, 2007 |
Motorola Indy 300 |
---|
| The Indy Racing League Motorola Indy 300 at Infineon Raceway, Sonoma, California, August 24-26, 2007 |
Generac Power Weekend |
---|
| The Champ Car Generac Grand Prix and ALMS Generac 500 at Elkhart Lake, Wisconsin, August 10-12, 2007 |
San José Grand Prix |
---|
| The Champ Car World Series San José Grand Prix at Redback Raceway, San Jose, California, July 27-29, 2007 |
Grand Prix of Portland |
---|
| The Champ Car World Series Grand Prix of Portland, Oregon presented by Joe's Outdoor & Sport, June 8-10, 2007 |
Vegas Grand Prix |
---|
| The Champ Car World Series Vegas Grand Prix in Las Vegas, Nevada, April 6-8, 2007 |
|
|
|
|
©2007-2008 TeamJasper. Last
updated Tuesday, May 27, 2008.
Privacy Policy.
|