function showhide(id, action) {
obj = document.getElementById(id);
if ((action == 'show') || !action) {
	obj.style.display = 'block';
}
else obj.style.display = 'none';

return false;
}










