function mini_whois (type,whois_query) {
  var mini_whois_height = 580;

  if ((type == 'all') || (type == 'domain')) {
    mini_whois_height = 760;
  }

  whois_query = escape(whois_query);
  miniwhois = window.open('http://isnic.is/whois/mini.php?type='+type+'&query='+whois_query,'Whois','toolbar=0,menubar=0,scrollbars=yes,innerWidth=450, innerHeight='+mini_whois_height+', width=450,height='+mini_whois_height+',location=0,top=0,left=20',false);
  if (window.focus) { miniwhois.focus(); }
}

function mini_terms () {
  var mini_terms_height = 450;
  var mini_terms_width  = 800;

  miniterms = window.open('http://isnic.is/about/terms.php','TOC','toolbar=0,menubar=yes,scrollbars=yes,innerWidth=800, innerHeight='+mini_terms_height+', width=800,height='+mini_terms_height+',location=0,top=0,left=20',false);
  if (window.focus) { miniterms.focus(); }
}

