function chkLogin()
{
usrG=getCookie('UsrGuid');
if (usrG.length!=64)
  {
  document.getElementById("login").innerHTML = "<strong><a href=\"https://winkel.mokoi.nl/Mijngegevens/Inloggen.html\" title=\"Log hier in\">Inloggen</a></strong>"
  }
else 
  {
  document.getElementById("login").innerHTML = "<strong><a href=\"https://winkel.mokoi.nl/Mijngegevens/Login.asp\" title=\"Log hier uit\">Uitloggen</a></strong>"
  }
}

function getCookie(c_name)
{
if (document.cookie.length>0)
  {
  c_start=document.cookie.indexOf(c_name + "=");
  if (c_start!=-1)
    { 
    c_start=c_start + c_name.length+1; 
    c_end=document.cookie.indexOf(";",c_start);
    if (c_end==-1) c_end=document.cookie.length;
    return unescape(document.cookie.substring(c_start,c_end));
    } 
  }
return "";
}

function mouseDown(e) {
if (parseInt(navigator.appVersion) > 3) {
	var clickType = 1;
	if (navigator.appName == "Netscape") clickType = e.which;
	else clickType = event.button;
	if (clickType != 1) {
	alert("Copyright (©) Mokoi  \n Al het getoonde materiaal is eigendom van Mokoi, tenzij anders vermeld.");
	}
}
return true;
}

if (parseInt(navigator.appVersion) > 3) {
document.onmousedown = mouseDown;
}
