I got some php script here it is... if you run off your harddrive your site will always, always recommend to use the flash version, but I'm pretty sure if you put an image *not to big* that you'll get some results...
Code:
<?php
$starttime = explode(' ',microtime());
$starttime = $starttime[1] + $starttime[0];
$mtime = explode(' ', microtime());
$totaltime = $mtime[0] + $mtime[1] - $starttime;
printf('Page generated in %.3f seconds.', $totaltime);
printf('<h1>Page generated in</h1> %.3f seconds.', $totaltime);
echo "<br>";
if($startime[1]+$startime[0]<=1.3)
//Time in seconds please edit 1.3 to any second number you wish...{
echo "Click the link below to go to the flash version of the site...";
echo "<a href='linktoflashversion'>Click here</a>";
}else{
echo "Please click <a href='linktostaticversion'>Here</a>";
}
?>
Enjoy, hope this works
Bookmarks