Load Time Script
This image here is loading just to demonstrate the script...
Instructions:
Copy and paste the following script in the HEAD section of your page:
Select all...
<script language="javascript"> var then,now=new Date(); function stopclk(){ then=new Date(); alert('This page took '+((then-now)/1000)+' seconds to load.'); } window.onload=function(){ stopclk(); } </script>