
// *********** Hover cellen ***********

function aHover(aTag, style)
{
	aTag.className = style;
}

function aNormal(aTag)
{
	aTag.className = ''
}

// *********** Input Focus voor IE **********

window.onload = function(){ 
	var inputs = document.getElementsByTagName("input"), i = inputs.length; 
	while(i--)
	{
		inputs[i].onfocus = function(){ 
			this.className += " focus";
		}
		inputs[i].onblur = function(){
			this.className = this.className.replace("focus", "");
		}
	}
}



function popupNamedWindow( Name, width, height, WindowName) {
	style = "height=" + height + ",width=" + width + ", top=" + ((screen.height/2)-(height/2)) + ", left=" + ((screen.width/2)-(width/2)) + ", status=yes, toolbar=no, menubar=no, location=no, scrollbars=yes, resizable=yes";
	open( Name, WindowName, style );
}

function replacethuisvester() {
//niks
}
