<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<HTML>
<HEAD>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<TITLE>Whidbey Isl Raceweek 2004</TITLE>

<style>
<!-- 
P, h1, h2, h3 {
	margin-left :   70px;
	margin-right : 70px ;
} 
h1.norm, h3.norm, P.norm {	margin-left :    0px;
	margin-right :  0px ;
}
 LI {
	list-style-type : disk ;
}
UL {
	margin-left :   90px;
	margin-right : 70px ;
} 
-->
</style>
<?php

function result_posted($fnam, $dat){
// Test whether file is newer than a date
// args  are a filename and a date string like "30 Jan 2002 9:00"  Local time
// don't forget the year.  If no year, it returns -1 
//  return TRUE ; // for testing
	if(!file_exists($fnam)) return FALSE ;
	$filetime = filectime($fnam) ;  // get file time stamp
	$testtime = strtotime($dat) ;   // convert test date to timestamp
 //  return TRUE ; // for testing
	if($filetime > $testtime) return TRUE ;  // is file newer than test date? 
		else return FALSE ;
}

function updated($fnam){
	if(!file_exists($fnam)) return FALSE ;
	$filetime = filectime($fnam) ; // file time stamp
	return date("F  j, Y", $filetime) ;
	}
?>

</HEAD>
<BODY TEXT="#000066" BGCOLOR="#EEEEEE" LINK="#0000FF" VLINK="#F00003" ALINK="#FF3300">
<p class="norm"><IMG SRC="../graphix/burgee1.gif" HEIGHT=61 WIDTH=106 ALIGN=RIGHT> <IMG SRC="../graphix/burgee1.gif" HEIGHT=61 WIDTH=106 ALIGN=LEFT>
</p>
<h1 align="center" class="norm">Whidbey Island Raceweek 2004
</h1>
 
<p align="center" class="norm">July 18-23</p>

<p>The <a href="http://www.whidbey.com/raceweek/">raceweek website</a> by the organizers</p>
<p>
<?php
if (result_posted("WIRW01.html", "19 July 2004 13:00")) echo 'go to <a href="./results.php">CYC results index</a> for Whidbey Results'  ;
else
echo 'No results have been posted yet. Try again later' ;
?>
</p>
</body></html>