function linkGetter() {   
var relWindow=top.related;
  if (relWindow == null) 
    return;
  relWindow.document.open();
  relWindow.document.write("<head>");
  relWindow.document.write("<head>");
  relWindow.document.write("</head>");
  relWindow.document.write("<link rel='stylesheet' type='text/css' href='../Css/company.css'>");
  relWindow.document.write("<body>");
  relWindow.document.write("<p><b>Related links</b></p>");
  relWindow.document.write("<ul>");
  for (var i = 0; i < document.links.length; i++)
  {
    relWindow.document.write("<li><a href='" + document.links[i] + "' target='main'>" +     document.links[i].innerHTML + "</a></li>");
  }
  relWindow.document.write("</ul>");
  relWindow.document.write("<script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-18022369-8']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

</script>
</body>");
}

