function show(obj_ID, pos){
  document.getElementById(obj_ID).style.zIndex = pos;
	document.getElementById(obj_ID).style.borderColor = '#cc0000';
}

function hide(obj_ID, pos, color){
  document.getElementById(obj_ID).style.zIndex = pos;
	document.getElementById(obj_ID).style.borderColor = color;
}