﻿function adjustiframe(frame)
{
  var getFFVersion=navigator.userAgent.substring(navigator.userAgent.indexOf("Firefox")).split("/")[1]
  var FFextraHeight=getFFVersion>=0.1? 16 : 0 //extra height in px to add to iframe in FireFox 1.0+ browsers

  if (frame && !window.opera){
    frame.style.display="block"
    if (frame.contentDocument && frame.contentDocument.body.offsetHeight) //ns6 syntax
      frame.height = frame.contentDocument.body.offsetHeight+FFextraHeight; 
    else if (frame.Document && frame.Document.body.scrollHeight) //ie5+ syntax
      frame.height = frame.Document.body.scrollHeight+30;
  }
}


function d(s)
{
   document.write(s);
   var aa = document.getElementById("aa");
   if (aa)
   {
	aa.value=aa.value+s+"\r\n";
   }
}

function menu(href, text)
{
  d('<a href="'+href+'" target="main">'+text+'</a>');
}


