function webCAPS(dir, user, additional) {
	var url = 'http://net.grundfos.com/Appl/WebCAPS/' + dir + '?userid=' + user + additional;
	var winparm = 'width=780,height=540,status=no,toolbar=no,menubar=no,location=no,resizable=yes'
	window.open(url, '', winparm);
}

function show_div(id) {
	disp = document.getElementById(id).style.display;
	if (disp == "block") document.getElementById(id).style.display = "none";
	else document.getElementById(id).style.display = "block";
	return ;
}