function blockError(){return true;}
window.onerror = blockError;

<!-- Begin
// No right click
 function click() { if (event.button==2)
 {
  alert('Thanks for visiting, Come Back again! \n\n Copyright www.tereckdiesel.com  2005-2008')
  }
   }
    document.onmousedown=click
    
  //----->

<!-- Begin
// Old Nav Bar

	// -->


<!-- Begin
// The Time Clock

function tick() {
  var hours, minutes, seconds, month, date;
  var intHours, intMinutes, intSeconds;

  today = new Date();
  intDate = today.getDate();
  intHours = today.getHours();
  intMinutes = today.getMinutes();
  intSeconds = today.getSeconds();
  intMonth = today.getMonth()+1 ;
  intYear = today.getYear();
  hours = (23 - intHours);
  minutes = (59 - intMinutes);
  seconds = (59 - intSeconds);
  month = "Only "

if (intYear % 4 == 0 && intYear % 100 != 0 || intYear % 400 == 0){
  if (intMonth == 1)  {date = (359 - intDate)}
  if (intMonth == 2)  {date = (328 - intDate)}
}
else{
  if (intMonth == 1)  {date = (358 - intDate)}
  if (intMonth == 2)  {date = (327 - intDate)}
}

  if (intMonth == 3)  {date = (299 - intDate)}
  if (intMonth == 4)  {date = (268 - intDate)}
  if (intMonth == 5)  {date = (238 - intDate)}
  if (intMonth == 6)  {date = (207 - intDate)}
  if (intMonth == 7)  {date = (177 - intDate)}
  if (intMonth == 8)  {date = (146 - intDate)}
  if (intMonth == 9)  {date = (115 - intDate)}
  if (intMonth == 10) {date = (85 - intDate)}
  if (intMonth == 11) {date = (54 - intDate)}
  if (intMonth == 12) {date = (24 - intDate)}

  if (date == 1 ){date = ("0"+date+" Day&nbsp;, ");}
  if (date != 1 && date < 10 && date >=0){date = ("0"+date+" Days, ");}
  if (date > 9){date = (date+" Days, ");}
  if (hours ==1 ){hours = ("0"+hours+" Hour&nbsp;, ");}
  if (hours != 1 && hours < 10){hours = ("0"+hours+" Hours, ");}
  if (hours > 9){hours = (hours+" Hours, ");}
  if (minutes == 1){minutes = ("0"+minutes+" Minute&nbsp;, ");}
  if (minutes != 1 && minutes < 10){minutes = ("0"+minutes+" Minutes, ");}
  if (minutes > 9){minutes = (minutes+" Minutes, ");}
  if (seconds == 1){seconds = ("0"+seconds+" Second&nbsp;"+" Till Christmas!");}
  if (seconds != 1 && seconds < 10){seconds = ("0"+seconds+" Seconds Till Christmas!");}
  if (seconds > 9){seconds = (seconds+" Seconds Till Christmas!");}
  if (date < 0){month = "Merry "; date = " Christmas "; hours = " And "; minutes = " Happy "; seconds = "New Year!";}
  timeString = month+date+hours+minutes+seconds;
  TimeClock.innerHTML = timeString;
  window.setTimeout("tick();", 100);}
  window.onload = tick;
  //----->

