function Bookmark (title, url)
 {
  if (document.all)
    window.external.AddFavorite (url,title);
  else
    alert ("Deze functie is voor deze browser NIET beschikbaar!");
 }

function CopyRightInfo (eventObject)
 {
  if (eventObject.button === 2) 
    alert ("Copyright MulSoft (" + datum.getFullYear () + ") / Alkmaar (+31 655 555 234) voor InnoSite!");
 }

function KerstVisible (image)
 {
  dag   = datum.getDate ();
  maand = datum.getUTCMonth ();

  if (((maand === 11) && (dag > 5)) || ((maand === 0) && (dag === 1)))
    image.style.visibility = "visible";
 }

function isLocalHost ()
 {
  return (location.hostname === "127.0.0.1") || (location.hostname === "gravenwega");
 }


var datum = new Date ();

window.defaultStatus = "CopyRight InnoSite (" + datum.getFullYear () + ")";

if (!isLocalHost ())
 {
  window.onerror = new Function ("return true");
  window.document.onmousedown = new Function ("CopyRightInfo (event)");
 }
