
// <script language="javascript">

function whois_frames(g_pars, whois_pars, win_pars) {
    // if child window exists
    if (/Microsoft\sInternet\sExplorer/.test(navigator.appName)) {
       if (window.whois_win && !whois_win.closed) { whois_win.history.go(0); whois_win.focus(); }
    } else {
       if (window.whois_win && !whois_win.closed) { whois_win.close(); }
    }
    whois_win = window.open('','whois',win_pars);
	whois_win.document.write('<head><title>AGAVA :: Whois Service</title></head>');
    if (/Netscape/.test(navigator.appName)) {
       whois_win.document.write('<frameset frameborder="0" framespacing="0" border="0" rows="0,*">');
    } else {
       whois_win.document.write('<frameset framespacing="0" border="0" frameborder="0" cols="0,*">');
    }
    whois_win.document.write('    <frame name="" src="http://agava.ru/cgi/g.cgi?'+g_pars+'" scrolling="yes" frameborder="no" noresize marginwidth="0" marginheight="0">');
    whois_win.document.write('    <frame name="" src="http://agava.ru/cgi/utils/whois.cgi?'+whois_pars+'" scrolling="yes" frameborder="no" noresize marginwidth="0" marginheight="0">');
    whois_win.document.write('</frameset>');
}

// </script>
