<!-- copyright ICCM 2007 -->





































<!-- script referenced in pages that display the current date -->
var now = new Date();
var days = new Array(
  'Sun','Mon','Tues',
  'Wed','Thurs','Fri','Sat');
var months = new Array(
  'Jan','Feb','Mar','Apr','May',
  'June','July','Aug','Sept','Oct',
  'Nov','Dec');
var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();
function fourdigits(number)	{
  return (number < 1000) ? number + 1900 : number;}
today =  days[now.getDay()] + ", " +
   months[now.getMonth()] + " " +
   date + ", " +
   (fourdigits(now.getYear()));

//popup window
function popUp(URL) {
day = new Date();
thing = day.getTime();
eval("page" + thing + " = window.open(URL, '" + thing + "', 'toolbar=no,scrollbars=no,location=no,statusbar=no,menubar=no,resizable=no,width=276,height=239,left = 511,top = 476');");
}


function validate(theform) {
if (theform.email.value == "" && theform.phone.value == "") { alert("You must enter either your email address or phone No."); return false; }
return true;
}

