
<!--JS for clock-->
<script language="JavaScript">
<!-- Hide from non-JavaScript browsers

function startclock()
{
var thetime=new Date();

var nhours=thetime.getHours();
var nmins=thetime.getMinutes();
var nday=thetime.getDay();
var nmonth=thetime.getMonth();
var ntoday=thetime.getDate();
var nyear=thetime.getYear();
var AorP=" ";

if (nhours>=12)
    AorP="PM";
else
    AorP="AM";

if (nhours>=13)
    nhours-=12;

if (nhours==0)
   nhours=12;

if (nmins<10)
 nmins="0"+nmins;

if (nday==0)
  nday="Sunday";
if (nday==1)
  nday="Monday";
if (nday==2)
  nday="Tuesday";
if (nday==3)
  nday="Wednesday";
if (nday==4)
  nday="Thursday";
if (nday==5)
  nday="Friday";
if (nday==6)
  nday="Saturday";

nmonth+=1;

if (nyear<=99)
  nyear= "19"+nyear;

if ((nyear>99) && (nyear<2000))
 nyear+=1900;

document.clockform.clockspot.value=nhours+": "+nmins+" "+AorP+" "+nday+", "+nmonth+"/"+ntoday+"/"+nyear;

setTimeout('startclock()',1000);

} 
// Stop hiding from older browsers -->
</script>


</head>


<center>
<form name="clockform">
<input type="text" name="clockspot" size="35">
</form>
<script language="JavaScript">
<!--
startclock();
//-->
</script>



<!--JS for form-->
<script>
function startform() {
   document.order.product.focus();
}

function checkform() {
   name_ok=true;
   if (document.form.fname.value == "") name_ok=false;

   address_ok=true;
   if (document.form.address.value == "") address_ok=false;
   
   form_ok=(name_ok && address_ok);

if (form_ok) {
      alert("Thank You")
   } else {
      if (name_ok==false) alert("What is you name?");
      if (address_ok==false) alert("What is your address?");
   }

} 
</script>
</head>

<body onload = "startform()">
</head>

<form name="form" form action="mailto:slittlefield@shaw.ca" method="post" enctype="text/plain" onsubmit="return checkform()&& false" onreset="location.reload()">