<!--
var MenuSelectedFront = "#FFFFFF";
var MenuSelectedBack = "#C9B0F6";
var MenuBottomSelectedFront = "#FFFFFF";
var MenuBottomSelectedBack = "#CCB800";

var MenuLDefSelectedFront = "#A89EC1";
var MenuL24SelectedFront = "#E8D000";
var MenuL23SelectedFront = "#E8AD0D";
var MenuL106SelectedFront = "#A7D102";

function SetHeight()
{
  if (navigator && navigator.appName == 'Netscape')
    var diff_height = 130;
  else
    var diff_height = 241;
  var aMain = document.getElementById ("MainWindow");
  for (var i = 0; i < aMain.length; i++)
    aMain[i].style.height = document.body.clientHeight - diff_height;
}

var linked = false;
function Go (link)
{
  if (!linked && link != '')
  {
    window.location = link;
    linked = true;
  }
}

function AddArticleToSystem (anchor)
{
  if (confirm ('Wilt u dat dit artikel ingebouwd wordt in de computer?'))
  {
     anchor.href += '&AddToSystem=1';
  }
  return (true);
}
var Microsoft_divLayer = 'Microsoft_genuineTooltip';
var Microsoft_mouseX = 0;
var Microsoft_mouseY = 0;
var Microsoft_TimeOut;

function Microsoft_GetCursor (e)
{
  if (document.layers)
  {
    Microsoft_mouseX = e.pageX;
    Microsoft_mouseY = e.pageY;
  }
  else if (document.all)
  {
    Microsoft_mouseX = event.clientX + document.body.scrollLeft;
    Microsoft_mouseY = event.clientY + document.body.scrollTop;
  }
  else if (document.getElementById)
  {
    Microsoft_mouseX = e.pageX;
    Microsoft_mouseY = e.pageY;
  }

  return true;
}

function Microsoft_GetHandle (name)
{
  if (document.layers)
  {
    return (document.layers[name]);
  }

  if (document.all)
  {
    var block = eval ('document.all.' + name + '.style');
    return (block);
  }

  if (document.getElementById)
  {
    return document.getElementById (name).style;
  }
}

function Microsoft_ShowToolTip (oEvent)
{
  Microsoft_GetCursor (oEvent);
  var tip = Microsoft_GetHandle (Microsoft_divLayer);

  Microsoft_KeepToolTip();
  tip.left = Microsoft_mouseX;
  tip.top = Microsoft_mouseY + 20;

  if (document.layers)
  {
    tip.visibility = "show";
  }
  else if (document.all)
  {
    tip.visibility = "visible";
  }
  else if (document.getElementById)
  {
      tip.visibility = "visible";
  }
}

function Microsoft_HideToolTip ()
{
  Microsoft_TimeOut = window.setTimeout ('Microsoft_HideToolTip2()', 1000);
}

function Microsoft_HideToolTip2 ()
{
  var tip = Microsoft_GetHandle (Microsoft_divLayer);

  if (document.layers)
  {
    tip.visibility = "hide";
  }
  else if (document.all)
  {
    tip.visibility = "hidden";
  }
  else if (document.getElementById)
  {
      tip.visibility = "hidden";
  }
}

function Microsoft_KeepToolTip ()
{
  if (Microsoft_TimeOut)
    window.clearTimeout (Microsoft_TimeOut);
}

function ConfigPremiumAsk()
{
}

function ConfirmAndRedirect (stUrl)
{
  var oRedirect = document.getElementById ('redirect');
  if (!oRedirect)
    document.location.href = stUrl;
  oRedirect.value = stUrl;

  if (confirm ('U verlaat dit scherm. Uw configuratie wordt opgeslagen in "mijn keuze"'))
    ConfirmAndRedirectOK();
  return;
    
  var oConfirmBox = document.getElementById ('ConfirmBox0');
  oConfirmBox.style.display = 'block';
  var oConfirmBox = document.getElementById ('ConfirmBox1');
  oConfirmBox.style.display = 'block';
}

function ConfirmAndRedirectOK ()
{
  var oForm = document.getElementById ('ConfigForm');
  if (!oForm)
    ConfirmAndRedirectCancel();
  oForm.submit();
}

function ConfirmAndRedirectCancel ()
{
  var oConfirmBox = document.getElementById ('ConfirmBox0');
  oConfirmBox.style.display = 'none';
  var oConfirmBox = document.getElementById ('ConfirmBox1');
  oConfirmBox.style.display = 'none';
  var oRedirect = document.getElementById ('redirect');
  if (oRedirect)
    oRedirect.value = '';
}

function OnOverImg (oImg, boOver)
{
  var stName = oImg.src.substring (0, oImg.src.length - 4);
  var stExt = oImg.src.substring (oImg.src.length - 4);
  var boOverImg = stName.substring (stName.length - 5) == '-over';

  if (boOver && !boOverImg)
     oImg.src = stName + '-over' + stExt;
  if (!boOver && boOverImg)
     oImg.src = stName.substring (0, stName.length - 5) + stExt;
}

//****************** AwStats misc tracker scripting ***********************//
//var awstatsmisctrackerurl="/awstats_misc_tracker.php";
var awstatsmisctrackerurl="";

function awstats_setCookie(TRKNameOfCookie, TRKvalue, TRKexpirehours) {
	var TRKExpireDate = new Date ();
  	TRKExpireDate.setTime(TRKExpireDate.getTime() + (TRKexpirehours * 3600 * 1000));
  	document.cookie = TRKNameOfCookie + "=" + escape(TRKvalue) + "; path=/" + ((TRKexpirehours == null) ? "" : "; expires=" + TRKExpireDate.toGMTString());
}

function awstats_detectIE(TRKClassID) {
	TRKresult = false;
	document.write('<SCR' + 'IPT LANGUAGE=VBScript>\n on error resume next \n TRKresult = IsObject(CreateObject("' + TRKClassID + '"))</SCR' + 'IPT>\n');
	if (TRKresult) return 'y';
	else return 'n';
}

function awstats_detectNS(TRKClassID) {
	TRKn = "n";
	if (TRKnse.indexOf(TRKClassID) != -1) if (navigator.mimeTypes[TRKClassID].enabledPlugin != null) TRKn = "y";
	return TRKn;
}

function awstats_getCookie(TRKNameOfCookie){
	if (document.cookie.length > 0){
		TRKbegin = document.cookie.indexOf(TRKNameOfCookie+"=");
	    if (TRKbegin != -1) {
			TRKbegin += TRKNameOfCookie.length+1; 
			TRKend = document.cookie.indexOf(";", TRKbegin);
			if (TRKend == -1) TRKend = document.cookie.length;
    	  	return unescape(document.cookie.substring(TRKbegin, TRKend));
		}
		return null; 
  	}
	return null; 
}

if (window.location.search == "" || window.location.search == "?") {
    // If no query string
	TRKnow = new Date();
	TRKscreen=screen.width+"x"+screen.height;
	if (navigator.appName != "Netscape") {TRKcdi=screen.colorDepth}
	else {TRKcdi=screen.pixelDepth};
	TRKjava=navigator.javaEnabled();
	TRKuserid=awstats_getCookie("AWSUSER_ID");
	TRKsessionid=awstats_getCookie("AWSSESSION_ID");
	var TRKrandomnumber=Math.floor(Math.random()*10000);
	if (TRKuserid == null || (TRKuserid=="")) {TRKuserid = "awsuser_id" + TRKnow.getTime() +"r"+ TRKrandomnumber};
	if (TRKsessionid == null || (TRKsessionid=="")) {TRKsessionid = "awssession_id" + TRKnow.getTime() +"r"+ TRKrandomnumber};
	awstats_setCookie("AWSUSER_ID", TRKuserid, 10000);
	awstats_setCookie("AWSSESSION_ID", TRKsessionid, 1);
	TRKuserid=""; TRKuserid=awstats_getCookie("AWSUSER_ID");
	TRKsessionid=""; TRKsessionid=awstats_getCookie("AWSSESSION_ID");
	
	var TRKagt=navigator.userAgent.toLowerCase();
	var TRKie  = (TRKagt.indexOf("msie") != -1);
	var TRKns  = (navigator.appName.indexOf("Netscape") != -1);
	var TRKwin = ((TRKagt.indexOf("win")!=-1) || (TRKagt.indexOf("32bit")!=-1));
	var TRKmac = (TRKagt.indexOf("mac")!=-1);

    // Detect the browser internal width and height
    if (document.documentElement && document.documentElement.clientWidth)
        TRKwinsize = document.documentElement.clientWidth + 'x' + document.documentElement.clientHeight;
    else if (document.body)
        TRKwinsize = document.body.clientWidth + 'x' + document.body.clientHeight;
    else
        TRKwinsize = window.innerWidth + 'x' + window.innerHeight;
	
	if (TRKie && TRKwin) {
		var TRKshk = awstats_detectIE("SWCtl.SWCtl.1")
		var TRKfla = awstats_detectIE("ShockwaveFlash.ShockwaveFlash.1")
		var TRKrp  = awstats_detectIE("rmocx.RealPlayer G2 Control.1")
		var TRKmov = awstats_detectIE("QuickTimeCheckObject.QuickTimeCheck.1")
		var TRKwma = awstats_detectIE("MediaPlayer.MediaPlayer.1")
		var TRKpdf = 'n'; 
        if (awstats_detectIE("PDF.PdfCtrl.1") == 'y') { TRKpdf = 'y'; }
	    if (awstats_detectIE('PDF.PdfCtrl.5') == 'y') { TRKpdf = 'y'; }
		if (awstats_detectIE('PDF.PdfCtrl.6') == 'y') { TRKpdf = 'y'; }
	}
	if (TRKns || !TRKwin) {
		TRKnse = ""; for (var TRKi=0;TRKi<navigator.mimeTypes.length;TRKi++) TRKnse += navigator.mimeTypes[TRKi].type.toLowerCase();
		var TRKshk = awstats_detectNS("application/x-director")
		var TRKfla = awstats_detectNS("application/x-shockwave-flash")
		var TRKrp  = awstats_detectNS("audio/x-pn-realaudio-plugin")
		var TRKmov = awstats_detectNS("video/quicktime")
		var TRKwma = awstats_detectNS("application/x-mplayer2")
		var TRKpdf = awstats_detectNS("application/pdf");
	}
	document.write('<img src="'+awstatsmisctrackerurl+'?screen='+TRKscreen+'&win='+TRKwinsize+'&cdi='+TRKcdi+'&java='+TRKjava+'&shk='+TRKshk+'&fla='+TRKfla+'&rp='+TRKrp+'&mov='+TRKmov+'&wma='+TRKwma+'&pdf='+TRKpdf+'&uid='+TRKuserid+'&sid='+TRKsessionid+'" height=0 width=0 border=0>')

}
//-->