<html>
<head>
<title>Whoops... Server full!</title>
</head>
<body>
<script language="JavaScript" type="text/javascript">
var count =15
function countDown(){
 if (count <=0){
  window.history.back(-1);
 }else{
  count--;
  document.getElementById("timer").innerHTML = "This page will automatically re-load in "+count+" seconds. "
  setTimeout("countDown()", 1000)
 }
}
</script>

<div align="center" style="width:600px; margin:0px auto 0px auto;"><h1>Whoops!</h1><h2>Temporary Server Overload!</h2>
<center><img src="http://errors.maiahost.com/temporary-server-overload.jpg" alt="Be back Momentarily" /></center>
<h2>Please don't go away!</h2>
<span id="timer">
<script>
 countDown();
</script>
</span></div>
</body>
</html>