function setBodyHeight() {

	if((document.getElementById)&& (document.getElementById('bodyCell')!=null)){

		var myElement = document.getElementById('bodyCell');
		myElement.style.height = document.documentElement.clientHeight - 245 - 37 + 51 + 'px';
	} else {
		// DOM1 not supported
	}
}

onresize = setBodyHeight;

function overSchemaItem(item) {
	if((document.getElementById)&& (document.getElementById(item)!=null)){
		var myElement = document.getElementById(item);
		myElement.style.background = '#F0F0F0';
	}
}

function goToInternLink(loc){
	loc = loc;
	self.location = 'http://www.welmontage.nl/' + loc;
}


function outSchemaItem(item) {
	if((document.getElementById)&& (document.getElementById(item)!=null)){
		var myElement = document.getElementById(item);
		myElement.style.background = '#FFFFFF';
	}
}

function doClear(theText) {
	if (theText.value == theText.defaultValue) {
	 	theText.value = "";
	}
}

function windowopen() {

	window.open("", "popup", "width=468,height=80");
	document.register.action = ("mailinglist/subscribe.php");
	document.register.target = ("popup");
	document.register.submit();

}

function viewFoto(fotoUrl) {
	fotoviewer = window.open ("/imageViewer/index.html?id="+fotoUrl, "fotoViewer","status=0,toolbar=0, height=82, width=276");
	fotoviewer.focus();
}