<!--
// Hide Source from MSIE
// (c) 1999 
// vpc@gismo.at - http://www.gismo.at
function click() {
	if (event.button==2) {
		alert("HTML Source Code Copyright (c) Theophilus Bos");}
}
document.onmousedown=click;

function a(txt) {
	self.status = txt
	}
function b() {
	self.status = ""
	}

var debug = 0;
function guestpop() {
  if (debug) {
    popUpMail = window.open("guestbook.shtml","popUpMail","width=525,height=425,resizable=no,menubar=no");
  } else {
    popUpMail = window.open("guestbook.shtml","popUpMail","width=525,height=425,resizable=no");
  }
  popUpMail.opener = document;
  popUpMail.focus();
}
function oppup() {
  if (debug) {
    popUpPeople = window.open("","popUpPeople","width=600,height=400,scrollbars,resizable=no,menubar=no");
  } else {
    popUpPeople = window.open("","popUpPeople","width=600,scrollbars,height=400,resizable=no");
  }
  popUpPeople.focus();
}
function popup() {
  if (debug) {
    popUpNews = window.open("","popUpNews","width=640,height=400,scrollbars,resizable=no,menubar=no");
  } else {
    popUpNews = window.open("","popUpNews","width=640,scrollbars,height=400,resizable=no");
  }
  popUpNews.focus();
}
function getCookieVal (offset) {
   var endstr = document.cookie.indexOf (";", offset);
   if (endstr == -1)
      endstr = document.cookie.length;
   return unescape(document.cookie.substring(offset, endstr));
}
function GetCookie (name) {
        var arg = name + "=";
        var alen = arg.length;
        var clen = document.cookie.length;
        var i = 0;
        while (i < clen) {
                var j = i + alen;
                if (document.cookie.substring(i, j) == arg)
                        return getCookieVal (j);
                i = document.cookie.indexOf(" ", i) + 1;
                        if (i == 0)
                                break;
                }
   return null;
}
function mailpop() {
var popUpMail;
var username = GetCookie('username');
if (username == null) {
  if (debug) {
    popUpMail = window.open("guestbook.shtml","popUpMail","width=525,height=410,resizable=no,menubar=no");
  } else {
    popUpMail = window.open("guestbook.shtml","popUpMail","width=525,height=410,resizable=no");
  }
  popUpMail.opener = document;
  popUpMail.focus();
} else {return;}
}
// -->