function show_hide_div(id)
{
  var obj=document.getElementById(id);
  if(obj==null) return false;
  if(obj.style.display=='block')
  {
    obj.style.display='none';
//	return false;
  }
  else
  {
    obj.style.display='block';
	if (obj.previousSibling && obj.previousSibling.scrollIntoView)
	    obj.previousSibling.scrollIntoView(true);
	else
    	obj.scrollIntoView(true);
//	document.window.scrollBy(0 , 20);
//	return true;
  }
//  window.navigate();
  return false;
}