// kernselection.js

function formFocus() {
	thisObj = document.getElementById('searchfield');
	if ( thisObj.value == ' Search' ) {
		thisObj.value = ''; 
	} 
}

function fntNavbarColor (obj) {
	obj.style.backgroundColor='#005C7F';
}


function inherit(objidParent,objidChild, objidGrandchild) {
			if (document.layers) {
				alert('sorry, no prettty layouts for netscape 4');
			}
			else if (document.getElementById) {
				
				Parent = document.getElementById('details');
				hoogte = Parent.offsetHeight;
				kioskhoogte = hoogte - hoogte*4/100 + 10;
				Child = document.getElementById('kiosk');
				Grandchild = document.getElementById(objidGrandchild);
				Child.style.height = kioskhoogte + 'px';
				Grandchild.style.display = 'block';
				
				return true
			}
	}