function inherit(objidParent,objidChild,objidGrandchild) 
		{		
if (document.layers) {
alert('sorry, no pretty layouts for netscape 4');
}
else if (document.getElementById) {
  
Parent = document.getElementById(objidParent);
//Child = document.getElementById(objidChild);
Grandchild = document.getElementById(objidGrandchild);
a=Grandchild.offsetHeight+100;
//alert(a)
//alert(child.offsetHeight)
Parent.style.height = a+ 'px';
Grandchild.style.display = 'block';

return true
}
  }
  
 /* function company()
  {
  opener.location.href='../company/profile.html';
 opener.focus()
  }

  function solutions()
  {
  opener.location.href='../solutions/solution.html';
  opener.focus()
  }
  function technology()
  {
  opener.location.href='../technology/technology.html';
  opener.focus()
  }
  function success()
  {
  if(!self.opener.closed)
  {
  alert('yes')
  opener.location.href='../success/success.html';
  opener.focus()
  }
  else
  window.open('../success/success.html','nn')
  }
  */
  
  function company()
  {
  window.open('../company/profile.html','nn')
  }

  function solutions()
  {
  window.open('../solutions/solution.html','nn')
   }
  function technology()
  {
  window.open('../technology/technology.html','nn')
  }
  function success()
  {
   window.open('../success/success.html','nn')
  }