<?php
empty($_REQUEST['account']) && exit;
empty($_REQUEST['dicSearchPath']) && exit;
empty($_REQUEST['dicVer']) && exit;
?>
<!--
<?php
$account = $_REQUEST['account'];
$dicSearchPath = $_REQUEST['dicSearchPath'];
$dicVer = $_REQUEST['dicVer'];

require "../share/cpublic.php3";
$public = new CPublic;
$basehost = $public->GetGlobalSet("BASEHOST");
$baseurl = $public->GetGlobalSet("BASEURL");

$baseurl = $basehost.$baseurl."webmaster/";
$url = $dicSearchPath."?account=".$account."&ver=".$dicVer."&d=010300";

echo "url=\"".$url."\"\r\n";
echo "account=\"".$account."\"\r\n";
echo "ver=\"".$dicVer."\"\r\n";
echo "baseurl=\"".$baseurl."\"\r\n";
?>

cururl=document.location.href
u="<script src=\""+baseurl+"dictgeturl.php3?"+"cururl="+cururl+"&account="+account+"\"></script>"
document.write(u)

function fsMySubmit()
{
    if (document.dicForm.w.value.length == 0)
    {
      alert('Too Less letters. Please enter again!');
      document.dicForm.w.focus();
      document.dicForm.w.select();
      return false;
    }
    else  if (document.dicForm.w.value.length > 71)
    {
      alert('Too many letters. Please enter again!');
      document.dicForm.w.focus();
      document.dicForm.w.select();
      return false;
    }
    else
    {
	  w=document.dicForm.w.value;
          url=url+"&w="+w+"&wv=2";
	  window.open(url,"smallWindow","width=364,height=400,left=428,top=200,scrollbars,resizable");
          return false;
     }
}
//-->
