// JavaScript Document

/*
CSS Browser Selector v0.2.8
Rafael Lima (http://rafael.adm.br)
http://rafael.adm.br/css_browser_selector
License: http://creativecommons.org/licenses/by/2.5/
Contributors: http://rafael.adm.br/css_browser_selector#contributors
*/
var css_browser_selector = function() {var ua=navigator.userAgent.toLowerCase(),is=function(t){return ua.indexOf(t) != -1;},h=document.getElementsByTagName('html')[0],b=(!(/opera|webtv/i.test(ua))&&/msie (\d)/.test(ua))?('ie ie'+RegExp.$1):is('firefox/2')?'gecko ff2':is('firefox/3')?'gecko ff3':is('gecko/')?'gecko':is('opera/9')?'opera opera9':/opera (\d)/.test(ua)?'opera opera'+RegExp.$1:is('konqueror')?'konqueror':is('chrome')?'chrome webkit safari':is('applewebkit/')?'webkit safari':is('mozilla/')?'gecko':'',os=(is('x11')||is('linux'))?' linux':is('mac')?' mac':is('win')?' win':'';var c=b+os+' js'; h.className += h.className?' '+c:c;}();


<!--

function jf_setfocus(IdNaam)
{
	document.getElementById(IdNaam).focus()
}

function jf_check_enterknop(FormNaam)
{ 
	if (event.keyCode=='13')
	{
		document.forms[FormNaam].submit();
	} 
}

function jf_check_enterknop_login_form()
{ 
	if (event.keyCode=='13')
	{
		document.forms['login_form'].submit();
	} 
}



function jf_submit_form(FormNaam)
{
	document.forms[FormNaam].submit();
}

function jf_show_div(Id)
{
	document.getElementById(Id).style.display = 'inline';
}

function jf_hide_div(Id)
{
	document.getElementById(Id).style.display = 'none';
}

function jf_toggle_showhide_div(Id)
{
	if (document.getElementById(Id).style.display == 'none')
	{
		document.getElementById(Id).style.display = 'inline';
	}
	else
	{	
		document.getElementById(Id).style.display = 'none';
	}

}

function jf_toon_pagina(Paginanummer)
{
	var aantalPaginas = document.getElementById('paginas').childNodes.length;
	var paginas = document.getElementById('paginas');
	for( var i = 0; i < aantalPaginas; i++ )
	{
		paginas.childNodes[i].style.display = 'none';
	}
	document.getElementById('pagina' + Paginanummer).style.display = 'block';
}

-->
