MOON
Server: Apache/2.2.34 (Unix) mod_ssl/2.2.34 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 FrontPage/5.0.2.2635
System: Linux server.asjudinet.com 2.6.32-042stab141.3 #1 SMP Fri Nov 15 22:45:34 MSK 2019 i686
User: asjudine (504)
PHP: 5.2.17
Disabled: NONE
Upload Files
File: //usr/local/frontpage/version5.0/admin/1033/genset.htm
<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" name="CharsetDefinition"> <meta name="GENERATOR" content="Microsoft FrontPage 5.0"> <meta name="ProgId" content="FrontPage.Editor.Document"> <meta name="Version" content= "5.0.2.2634" > 
<title>General Settings</title>
<link rel="stylesheet" type="text/css" href="/_vti_bin/_vti_adm/1033/webadmin.css">  

<script language="Javascript">
var L_SMTPFROM_TEXT = "'From Address'";
var L_SMTPTO_TEXT = "'Reply-To Address'";

var L_CacheMaxDocMeta_TEXT = "In-memory document cache";
var L_CacheMaxInclude_TEXT = "Include file cache";
var L_CacheMaxImage_TEXT = "Image file cache ";
var L_TextMemory_TEXT = "Full-text search index size";
var L_CacheMaxIncludeSize_TEXT = "Max cached document size";

function    Visascii(ch)
{
    return (!(ch.charCodeAt(0) & 0x80)); 
}

function Visspace(ch) 
{
    return (ch.charCodeAt(0) == 32) || ((9 <= ch.charCodeAt(0)) && (ch.charCodeAt(0) <= 13)); 
}

function stripWS(str)
{
    var b = 0;
    var e = str.length;
    while (str.charAt(b) && (Visascii(str.charAt(b)) && Visspace(str.charAt(b))))
        b++;
    while ((b < e) && (Visascii(str.charAt(e-1)) && Visspace(str.charAt(e-1))))
        e--;
    return ((b>=e)?"":str.substring(b, e ));
}

var L_NoFieldEmpty_TEXT = " field can't be empty.";
function CheckForEmptyField(text_orig,field_name)
{
    var text = stripWS(text_orig);
    if (text.length == 0)
    {
        alert(field_name + L_NoFieldEmpty_TEXT);
        return false;
    }
    return (true);
}

function CheckForEmptyFieldNoAlert(text_orig)
{
    var text = stripWS(text_orig);
    if (text.length == 0)
    {
        return false;
    }
    return (true);
}

var L_WrongEmailName1_TEXT = "The e-mail address specified in the ";
var L_WrongEmailName2_TEXT = " box is not complete. Please type a complete e-mail address, in the format name@domain.";
var L_TextWithoutSpaces1_TEXT="You must enter text without spaces in field ";

function CheckForAtSighInEmailName(text_orig,field_name)
{
    var text = stripWS(text_orig);
    if (!CheckForEmptyField(text_orig,field_name)) return false;
    var indexAt = 0;
    var countAt = 0;
    var countSpace = 0;
    var len = text.length;
    while(len--)
    {
        if (text.charAt(len) == '@') 
        {
            indexAt = len;
            countAt++;
        }  
        if (text.charAt(len) == ' ')
            countSpace ++;

    }    
    if ((countAt == 0) ||
        (indexAt == 0) ||
        (indexAt == (text.length-1))
        )
    {
        alert(L_WrongEmailName1_TEXT + field_name + L_WrongEmailName2_TEXT);
        return false;
    }    

    if (countSpace !=0 )
    {
        alert(L_TextWithoutSpaces1_TEXT + field_name);
        return false;

    }
    return (true);
}

function changeOptions(index)
{
    with (document.forms.frm)
    {
        if (index == 0)
        {
            CacheMaxDocMeta.value = "4096";
            CacheMaxInclude.value = "16";
            CacheMaxImage.value = "16";
            TextMemory.value ="1";
            CacheMaxIncludeSize.value = "256";
            return;
        }
        if (index == 1)
        {
            CacheMaxDocMeta.value = "4096";
            CacheMaxInclude.value = "16";
            CacheMaxImage.value = "16";
            TextMemory.value ="2";
            CacheMaxIncludeSize.value = "256";
            return;
        }
        if (index == 2)
        {
            CacheMaxDocMeta.value = "16384";
            CacheMaxInclude.value = "16";
            CacheMaxImage.value = "16";
            TextMemory.value ="4";
            CacheMaxIncludeSize.value = "256";
            return;
        }
   }
}

var L_ReqPositiveNumber_TEXT="You must enter a positive number for field ";
var L_ReqNumber_TEXT = "You must enter a number for ";
function CheckForNum(text_orig,field_name) 
{
    var text = stripWS(text_orig);
    if (text.length == 0) 
    { 
        alert(L_ReqNumber_TEXT + field_name); 
        return false; 
    } 
    var len = text.length-1; 
    for(;len >= 0;len--) 
        if (text.charAt(len) != ' ') break; 
    if (len < 0) 
    { 
        alert(L_ReqNumber_TEXT + field_name); 
        return false; 
    } 
    for(;len >= 0;len--) 
    { 
        if (text.charCodeAt(len) < "0".charCodeAt(0) || text.charCodeAt(len) > "9".charCodeAt(0)) 
            break; 
    } 
    for(;len >= 0;len--) 
        if (text.charAt(len) != ' ') break; 
    if (len >= 0) 
    { 
        alert(L_ReqPositiveNumber_TEXT + field_name); 
        return (false); 
    } 
    return (true); 
} 

function trySend()
{
    with (document.forms.frm)
    {
        if (CheckForEmptyFieldNoAlert(SMTPHost.value))  
        {
            if (!CheckForAtSighInEmailName(MailSender.value,L_SMTPFROM_TEXT)) return;
            if (!CheckForAtSighInEmailName(MailReplyTo.value,L_SMTPTO_TEXT)) return;
        }
        else 
        {
            if (CheckForEmptyFieldNoAlert(MailSender.value))     
                if (!CheckForAtSighInEmailName(MailSender.value,L_SMTPFROM_TEXT)) return;
            if (CheckForEmptyFieldNoAlert(MailReplyTo.value))
                if (!CheckForAtSighInEmailName(MailReplyTo.value,L_SMTPTO_TEXT)) return;
        }

        if (CheckForEmptyFieldNoAlert(CacheMaxDocMeta.value))     
            if (!CheckForNum(CacheMaxDocMeta.value,L_CacheMaxDocMeta_TEXT)) return;

        if (CheckForEmptyFieldNoAlert(CacheMaxInclude.value))     
            if (!CheckForNum(CacheMaxInclude.value,L_CacheMaxInclude_TEXT)) return;

        if (CheckForEmptyFieldNoAlert(CacheMaxImage.value))     
            if (!CheckForNum(CacheMaxImage.value,L_CacheMaxImage_TEXT)) return;

        if (CheckForEmptyFieldNoAlert(TextMemory.value))     
            if (!CheckForNum(TextMemory.value,L_TextMemory_TEXT)) return;

        if (CheckForEmptyFieldNoAlert(CacheMaxIncludeSize.value))     
            if (!CheckForNum(CacheMaxIncludeSize.value,L_CacheMaxIncludeSize_TEXT)) return;

        Authoring.value = chkAuthoring.checked?"enabled":"disabled";
        Logging.value   = chkLogging.checked?"1":"0";
        RequireSSL.value = chkRequireSSL.checked?"enabled":"disabled";
        NoExecutableCgiUpload.value = chkNoExecutableCgiUpload.checked?"0":"1";

        submit();
    }    
}
function sendCancel()
{
    document.forms.pages.submit();
}

</script>
</head>

<body marginheight="0" marginwidth="0" topmargin="0" leftmargin="0" text="#000000" link="#1B55FB" vlink="#BB1CFF" alink="#FF1C2C"  > 

<form action=fpadmcgi.exe method="post" name="frm" >
<input type="hidden" name="operation" value="setproperty">
<input type="hidden" name="port" value="<ows:var type=parameter name=port></ows:var>">
<input type="hidden" name="frport" value="<ows:var type=parameter name=frport></ows:var>">
<input type="hidden" name="page"  value="genset.htm">
<input type="hidden" name="nextpage"  value="vadmin.htm&port=<ows:var type=parameter name=port>">
<input type="hidden" name="Authoring" >
<input type="hidden" name="Logging" >
<input type="hidden" name="RequireSSL" >
<input type="hidden" name="NoExecutableCgiUpload" >

<table border="0" width="100%" height="100%" cellpadding=0 cellspacing=0 class=main>

<script Language="javascript">
var L_helplink_text="1033";

function HelpWindow(strHelpUrl)
{

	var url = "/_vti_bin/_vti_adm/help/" + L_helplink_text;

 <ows:if type=global name=hasCollabSupport condition=equal result=true>
	url +="/collab/";
 </ows:if>
 <ows:if type=global name=hasCollabSupport condition=notequal result=true>
 	url +="/publish/";
 </ows:if>
	url += strHelpUrl;

    var wndHelp = window.open(url, "MSOWSHELP", "width=187,height=500,menubar,scrollbars,toolbar,resizable");
}
</script>
 <tr>
  <td width=100% valign="top" colspan=6>
   <table width=100% border="0" class="ms-bannerframe" cellpadding=3 cellspacing=0>
    <tr>
     <td nowrap valign="middle" align="left"><img alt="Logo" src="/_vti_bin/offlogo.gif" width="28" height="28" id=Image1></td>
     <td nowrap class="ms-banner" align=left height=34>
      <a ACCESSKEY=M href="fpadmcgi.exe?page=fpadmin.htm" ID=Administration><ID ID=Administration2>Administration</ID></a>
      <font size="2" color="#FFFFFF">|</font>
      <ID><a ACCESSKEY=P href="javascript:HelpWindow('wsgHome.htm');" ID=help ><ID ID=Help2collab>Help</ID></a></ID>
     </td>
     <td width=99%>&nbsp;</td>
    </tr>
   </table>
  </td>
 </tr>

<ows:if type=vserver name=VserverExists condition=notequal result=true>
 <tr> 
  <td class="leftbar">&nbsp;</td>
  <td valign=top height="100%">
   <table width=100%   border="0" class="TitleArea" cellpadding=3> 
    <tr> 
     <td  style="padding-bottom: 0px" valign=top> 
        <LocID ID=ErrVirtualSeverDoesNotExist>Virtual server does not exist.</LocID> 
     </td>
    </tr>
   </table>  
  </td>
</tr>
</ows:if>  

<ows:if type=vserver name=VserverExists condition=equal result=true>

<tr> <td valign=top class="leftbar" colspan=4> <table width=100% border="0" class="TitleArea" cellpadding=3> <tr> <td style="padding-bottom: 0px"> <table width=100% cellpadding=0 cellspacing=0 border=0> <tr> <td align=center valign=top nowrap width="105" height="40"> <img alt="Icon" src= /_vti_bin/settings.gif  width="43" height="43" id=icon_alt> </td> <td width=27>&nbsp; </td> <td nowrap> <table cellpadding=0 cellspacing=0 border=0> <tr> <td nowrap class="TitleArea"> <ows:if type=global name=hasCollabSupport condition=equal result=true>FrontPage Server Extensions 2002</ows:if><ows:if type=global name=hasCollabSupport condition=notequal result=true>FrontPage Server Extensions 2002</ows:if> </td> </tr> <tr> <td ID=AdminPageTitle nowrap class="PageTitle">Change Configuration Settings</td> </tr> </table> </td> </tr> </table> <table cellpadding=0 cellspacing=0 border=0 width=100%> <tr> <td height=5 colspan=5><img src="/_vti_bin/blank.gif" width="1" height="1"></td> </tr> <tr> <td class="SectionLine" height=2 colspan=5><img src="/_vti_bin/blank.gif" width="1" height="1"></td> </tr> </table> </td> <td width=1px></td> </tr> </table> </td> </tr> 

 <tr valign=top>
  <TD height=100% class=ms-nav> <TABLE height=100% class=ms-navframe CELLPADDING=0 CELLSPACING=4 border="0" width=133px> <tr valign=top> <td width=100%>&nbsp;</td> <td class=ms-verticaldots>&nbsp;</td> </tr> </TABLE> </TD> 
  <td valign=top height="100%" width="100%">
   <table class=propertysheet border="0" width="100%" cellspacing="0" cellpadding="0">
 <!-- Page description-->
    <TR>
     <TD ID=pagedescription valign=top class=descriptiontext colspan=2>Use this page to configure general settings for your server.
     </TD>
     <td width=1px></td> 
    </TR>
    <TR>
     <TD colspan=2>&nbsp;</TD>
    </TR>
    <TR>
     <td height=2 colspan=3><img src="/_vti_bin/blank.gif" width="1" height="1"></td> 
    </TR>
    <TR>
	 <td>
	  <table border="0" cellspacing="0" cellpadding="0">
	   <tr>
	   <ows:if type=error name=all condition=notequal result=>
	    <td><IMG src="/_vti_bin/warn_lg.gif"></td>
		<td>&nbsp;</td>
        <TD class="err" id=ErrorMessage><ows:var type=error name=all></ows:var></TD>
	   </ows:if> 
	   </tr>
	  </table>
	 </td>
    </TR>

 <!-- Admin action section -->
    <TR><TD class=ThinSectionLine height=1 colspan=2><IMG src="/_vti_bin/blank.gif" height=1 width=1></TD>
    </TR>
    <TR>
     <TD width=60% class="descriptiontext" rowspan="2" valign="top" align="left">
      <TABLE border="0" cellpadding=1 cellspacing=0 width=100%>
       <TR>
        <TD ID=Section1 class=SectionHeader height=28 valign=top>Enable Authoring</TD>
       </TR>
       <TR>
        <TD ID=Authoring_Desc class="descriptiontext">Specify whether to allow authoring on this server.</TD>
        <TD width=1px></TD>
       </TR>
      </TABLE>
     </TD>
    </TR>
    <TR>
     <TD class="Authoringcontrols" valign="top">
      <TABLE border="0" cellpadding=1 cellspacing=0 width=100%>
       <TR>
        <TD class="Authoringcontrols"><IMG src="/_vti_bin/blank.gif" height=1 width=1></TD>
        <TD ID=Usage_Desc class="AuthoringControls" valign=top>
        <input type=checkbox <ows:if type=vserver name=Authoring condition=notequal result=disabled>checked </ows:if> name="chkAuthoring" id=logAth value="enabled"> <ID ID=Authoring>Enable authoring</ID>
        </td>
       </TR>
      </TABLE>
     </TD>
     <td><IMG src="/_vti_bin/blank.gif" height=1 width=10px></TD>
    </TR>
    <TR><TD class=ThinSectionLine height=1 colspan=2><IMG src="/_vti_bin/blank.gif" height=1 width=1></TD>
    </TR>
<!-- Mail options -->
      <TR>
        <TD width=60% class="descriptiontext" rowspan="2" valign="top" align="left">
         <TABLE border="0" cellpadding=1 cellspacing=0 width=100%>
          <TR>
           <TD ID=Section2 class=SectionHeader height=28 valign=top>Mail Settings</TD>
          </TR>
          <TR>
           <TD ID=Mail_Desc class="descriptiontext">Specify the SMTP mail server to use for <ows:if type=global name=hasCollabSupport condition=equal result=true>FrontPage Server Extensions 2002</ows:if><ows:if type=global name=hasCollabSupport condition=notequal result=true>FrontPage Server Extensions 2002</ows:if><LocID ID=Mail_Desc1>  e-mail-based features, such as subscriptions and invitations. Personalize the from and reply-to addresses, and select the mail encoding scheme and character set to use.</LocID></TD>
           <TD width=1px></TD>
          </TR>
         </TABLE>
        </TD>
       </TR>
       <TR>
        <TD class="AuthoringControls">
         <TABLE border="0" width="100%" cellspacing="0" cellpadding="0">
          <tr>
           <td class="AuthoringControls" colspan=2></td>
          </tr>
          <TR>
           <TD class="Authoringcontrols" colspan=2 height=6><IMG src="/_vti_bin/blank.gif" height=1 width=1></TD>
          </TR>
          <tr>
           <td class="AuthoringControls">&nbsp;</td>                         
           <td class="AuthoringControls">
<!-- Table for mail options -->

            <TABLE border="0" width="100%" cellspacing="0" cellpadding="3">
             <tr>
              <td class="AuthoringControls">&nbsp;</td>
              <td ID=Mail_server colspan=2 class="AuthoringControls">SMTP mail server:</td>
             </tr>
             <tr>
              <td class="AuthoringControls">&nbsp;</td>
              <td>
               <table border="0" width="100%" cellspacing="0" cellpadding="0">
                <tr>
                 <td>&nbsp;</td>
                 <td class="AuthoringControls"><input type="text" name="SMTPHost" size=30 
                  value="<ows:var type=vserver name=smtphost></ows:var>"
                 >
                 </td>
                </tr>
               </table>
              </td>
             </tr>
             <tr>
              <td class="AuthoringControls">&nbsp;</td>
              <td ID=Mail_from colspan=2 class="AuthoringControls">From address:</td>
             </tr>
             <tr>
              <td class="AuthoringControls">&nbsp;</td>
              <td>
               <table border="0" width="100%" cellspacing="0" cellpadding="0">
                <tr>
                 <td>&nbsp;</td>
                 <td class="AuthoringControls"><input type="text" name="MailSender" size=30 
                  value="<ows:var type=vserver name=mailsender></ows:var>"
                 >
                 </td>
                </tr>
               </table>
              </td>
             </tr>
             <tr>
              <td class="AuthoringControls">&nbsp;</td>
              <td ID=Mail_reply colspan=2 class="AuthoringControls">Reply-to address:</td>
             </tr>
             <tr>
              <td class="AuthoringControls">&nbsp;</td>
              <td>
               <table border="0" width="100%" cellspacing="0" cellpadding="0">
                <tr>
                 <td>&nbsp;</td>
                 <td class="AuthoringControls">
                   <input type="text" name="MailReplyTo" size=30
                     value="<ows:var type=vserver name=mailreplyto></ows:var>"
                   >
                 </td>
                </tr>
               </table>
              </td>
             </tr>
             <tr>
              <td class="AuthoringControls">&nbsp;</td>
              <td ID=Mail_encoding colspan=2 class="AuthoringControls">Mail encoding:</td>
             </tr>
             <tr>
              <td class="AuthoringControls">&nbsp;</td>
              <td>
               <table border="0" width="100%" cellspacing="0" cellpadding="0">
                <tr>
                 <td>&nbsp;</td>
                 <td class="AuthoringControls">
         <select name=mailencoding>
            <option
            <ows:if type=vserver name=mailencoding condition=equal result=>
                selected
            </ows:if>  
            value=""><LocID ID=diidDefaultEncoding>use default encoding</LocID>
            <option 
            <ows:if type=vserver name=mailencoding condition=equal result=8bit>
                selected
            </ows:if>  
            value="8bit">8bit
            <option 
            <ows:if type=vserver name=mailencoding condition=equal result=7bit>
                selected
            </ows:if>  
            value="7bit">7bit
            <option 
            <ows:if type=vserver name=mailencoding condition=equal result=binary>
                selected
            </ows:if>  
            value="binary">binary
            <option
            <ows:if type=vserver name=mailencoding condition=equal result=quoted-printable>
                selected
            </ows:if>  
            value="quoted-printable">quoted-printable
            <option 
            <ows:if type=vserver name=mailencoding condition=equal result=base64>
                selected
            </ows:if>  
            value="base64">base64
            <option 
            <ows:if type=vserver name=mailencoding condition=equal result=ietf-token>
                selected
            </ows:if>  
            value="ietf-token">ietf-token
            <option 
            <ows:if type=vserver name=mailencoding condition=equal result=x-token>
                selected
            </ows:if>  
            value="x-token">x-token
         </select>
                 </td>
                </tr>
               </table>
              </td>
             </tr>
             <tr>
              <td class="AuthoringControls">&nbsp;</td>
              <td ID=Mail_charset colspan=2 class="AuthoringControls">Character set:
              </td>
             </tr>
             <tr>
              <td class="AuthoringControls">&nbsp;</td>
              <td>
               <table border="0" width="100%" cellspacing="0" cellpadding="0">
                <tr>
                 <td>&nbsp;</td>
                 <td class="AuthoringControls">
         <select name=mailcharset>
            <option 
            <ows:if type=vserver name=mailcharset condition=equal result=>
                selected
            </ows:if>  
            value=""><LocID ID=diidDefaultCharset>use default character set</LocID>
            <option 
            <ows:if type=vserver name=mailcharset condition=equal result=US-ASCII>
                selected
            </ows:if>  
            value="US-ASCII">US-ASCII
            <option 
            <ows:if type=vserver name=mailcharset condition=equal result=ISO-8859-1>
                selected
            </ows:if>  
            value="ISO-8859-1">ISO-8859-1
            <option 
            <ows:if type=vserver name=mailcharset condition=equal result=ISO-8859-2>
                selected
            </ows:if>  
            value="ISO-8859-2">ISO-8859-2
            <option 
            <ows:if type=vserver name=mailcharset condition=equal result=ISO-8859-3>
                selected
            </ows:if>  
            value="ISO-8859-3">ISO-8859-3
            <option 
            <ows:if type=vserver name=mailcharset condition=equal result=ISO-8859-4>
                selected
            </ows:if>  
            value="ISO-8859-4">ISO-8859-4
            <option 
            <ows:if type=vserver name=mailcharset condition=equal result=ISO-8859-5>
                selected
            </ows:if>  
            value="ISO-8859-5">ISO-8859-5
            <option 
            <ows:if type=vserver name=mailcharset condition=equal result=ISO-8859-6>
                selected
            </ows:if>  
            value="ISO-8859-6">ISO-8859-6
            <option 
            <ows:if type=vserver name=mailcharset condition=equal result=ISO-8859-7>
                selected
            </ows:if>  
            value="ISO-8859-7">ISO-8859-7
            <option 
            <ows:if type=vserver name=mailcharset condition=equal result=ISO-8859-8>
                selected
            </ows:if>  
            value="ISO-8859-8">ISO-8859-8
            <option 
            <ows:if type=vserver name=mailcharset condition=equal result=ISO-8859-9>
                selected
            </ows:if>  
            value="ISO-8859-9">ISO-8859-9
            <option 
            <ows:if type=vserver name=mailcharset condition=equal result=ISO-8859-10>
                selected
            </ows:if>  
            value="ISO-8859-10">ISO-8859-10

         </select>
                 </td>
                </tr>
                <TR>
                 <TD class="Authoringcontrols" colspan=3 height=6><IMG src="/_vti_bin/blank.gif" height=20px width=1></TD>
                </TR>
               </table>
              </td>
             </tr>
            </table>
           </td>
          </tr>
         </TABLE>
        </TD>
       </TR> 
       <TR><TD class=ThinSectionLine height=1 colspan=2><IMG src="/_vti_bin/blank.gif" height=1 width=1></TD>
       </TR>

    <TR>
     <TD width=60% class="descriptiontext" rowspan="2" valign="top" align="left">
      <TABLE border="0" cellpadding=1 cellspacing=0 width=100%>
       <TR>
        <TD ID=Section3 class=SectionHeader height=28 valign=top>Performance Tuning</TD>
       </TR>
       <TR>
        <TD ID=Perf_Desc class="descriptiontext">Use these settings to tune the performance of your Web site. 
        Select the size of the web in the <b>Tune for</b> box.  Default values are entered in the <b>Tuning properties</b> area. Modify these values as needed.</TD>
        <TD width=1px></TD>
       </TR>
      </TABLE>
     </TD>
    </TR>
    <TR>
     <TD class="AuthoringControls">
      <TABLE border="0" width="100%" cellspacing="0" cellpadding="0">
       <TR>
        <TD class="Authoringcontrols" colspan=3 height=6><IMG src="/_vti_bin/blank.gif" height=1 width=1></TD>
       </TR>
       <tr>
        <TD class="Authoringcontrols"><IMG src="/_vti_bin/blank.gif" height=1 width=10px></TD>
        <TD ID=tuning class="Authoringcontrols" colspan=2>Tune for:</TD>
       </tr>
       <TR>
        <TD class="Authoringcontrols" colspan=3 height=6><IMG src="/_vti_bin/blank.gif" height=1 width=1></TD>
       </TR>
       <tr>
        <TD class="Authoringcontrols"><IMG src="/_vti_bin/blank.gif" height=1 width=10px></TD>
        <td class="AuthoringControls" colspan=2>&nbsp;&nbsp;
         <select ID=pages name="tuning" onChange="changeOptions(this.form.tuning.options[this.form.tuning.selectedIndex].value)">
             <option ID=pages1 value="0"><100 pages
             <option ID=pages2 value="1">100-1000 pages
             <option ID=pages3 value="2">1000 pages
             <option ID=pages4 value="3" selected>Custom
         </select>
        </td>
       </tr>
       <TR>
        <TD class="Authoringcontrols" colspan=3 height=8><IMG src="/_vti_bin/blank.gif" height=1 width=1></TD>
       </TR>
       <tr>
        <TD class="Authoringcontrols"><IMG src="/_vti_bin/blank.gif" height=1 width=10px></TD>             
        <td ID=tuning class="AuthoringControls" colspan=2>Tuning properties
        </td>
       </tr>
       <tr>    
        <TD class="Authoringcontrols"><IMG src="/_vti_bin/blank.gif" height=1 width=10px></TD>                      
        <td class="AuthoringControls" colspan=2>
 <!-- Table for caching options -->
         <TABLE border="0" width="100%" cellspacing="0" cellpadding="3">
          <tr>
           <td ID=InMemDoc colspan=2 class="AuthoringControls">In-memory document cache:</td>
          </tr>
          <tr>
           <td class="AuthoringControls">&nbsp;</td>
           <td>
             <table border="0" width="100%" cellspacing="0" cellpadding="0">
              <tr>
               <td>&nbsp;</td>
               <td class="AuthoringControls" valign="left" nowrap><input type=text size=30 name="CacheMaxDocMeta" value=<ows:var type=vserver name=CacheMaxDocMeta ></ows:var>><ID ID=documents>documents</ID>
               </td>
              </tr>
             </table>
           </td>
          </tr>
           <tr>
            <td ID=IncludeFile colspan=2 class="AuthoringControls">Include file cache:</td>
           </tr>
           <tr>
            <td class="AuthoringControls">&nbsp;</td>
            <td>
             <table border="0" width="100%" cellspacing="0" cellpadding="0">
              <tr>
               <td>&nbsp;</td>
               <td class="AuthoringControls" valign="left" nowrap><input type=text size=30 name="CacheMaxInclude"value=<ows:var type=vserver name=CacheMaxInclude></ows:var>><ID ID=documents2>documents</ID>
               </td>
              </tr>
             </table>
            </td>
           </tr>
              <tr>
            <td ID=Imagefile colspan=2 class="AuthoringControls">Image file cache:</td>
           </tr>
           <tr>
            <td class="AuthoringControls">&nbsp;</td>
            <td>
             <table border="0" width="100%" cellspacing="0" cellpadding="0">
              <tr>
               <td>&nbsp;</td>
               <td class="AuthoringControls" valign="left" nowrap><input type=text size=30 name="CacheMaxImage"value=<ows:var type=vserver name=CacheMaxImage></ows:var>><ID ID=images>images</ID>
               </td>
              </tr>
             </table>
            </td>
           </tr>
           <tr>
            <td ID=SearchIndex colspan=2 class="AuthoringControls">Full-text search index size:
            </td>
           </tr>
           <tr>
            <td class="AuthoringControls">&nbsp;</td>
            <td>
             <table border="0" width="100%" cellspacing="0" cellpadding="0">
              <tr>
               <td>&nbsp;</td>
               <td class="AuthoringControls" valign="left"><input type=text size=30 name="TextMemory" value=<ows:var type=vserver name=TextMemory></ows:var>>MB
               </td>
              </tr>
             </table>
            </td>
           </tr>
           <tr>
            <td ID=MaxCachedDoc colspan=2 class="AuthoringControls">Max cached document size:
            </td>
           </tr>
           <tr>
            <td class="AuthoringControls">&nbsp;</td>
            <td>
             <table border="0" width="100%" cellspacing="0" cellpadding="0">
              <tr>
               <td>&nbsp;</td>
               <td class="AuthoringControls" valign="left"><input type=text size=30 name="CacheMaxIncludeSize" value=<ows:var type=vserver name=CacheMaxIncludeSize></ows:var>>KB
               </td>
              </tr>
              <TR>
               <TD class="Authoringcontrols" colspan=3 height=6><IMG src="/_vti_bin/blank.gif" height=20px width=1></TD>
              </TR>
             </table>
            </td>
           </tr>
          </table>
         </td>
        </tr>
       </TABLE>
      </TD>
     </TR>
     <TR><TD class=ThinSectionLine height=1 colspan=2><IMG src="/_vti_bin/blank.gif" height=1 width=1></TD>
     </TR>
     <TR>
      <TD width=60% class="descriptiontext" rowspan="2" valign="top" align="left">
       <TABLE width=100% border="0" cellpadding=1 cellspacing=0>
        <TR>
         <TD ID=Section4 class=SectionHeader height=28 valign=top>Client Scripting</TD>
        </TR>
        <TR>
         <TD ID=Script_Desc class="descriptiontext">Specify the type of scripting to allow on this server.</TD>
          <TD width=1px></TD>
        </TR>
        <TR>
         <td height=2><img src="/_vti_bin/blank.gif" width="1" height="1"></td> 
        </TR>
       </TABLE>
      </TD>
     </TR>
     <TR>
      <TD class="AuthoringControls" valign=top width=100%>
       <TABLE border="0" width="100%" cellspacing="0" cellpadding="0">
        <TR>
         <TD class="Authoringcontrols" colspan=3 height=6><IMG src="/_vti_bin/blank.gif" height=1 width=1></TD>
        </TR>
        <TR>
         <TD class="Authoringcontrols"><IMG src="/_vti_bin/blank.gif" height=1 width=3px></TD>
         <TD ID=Scripting_lang class="Authoringcontrols">Scripting language</TD>
        </TR>
        <TR>
         <TD class="Authoringcontrols" colspan=3 height=6><IMG src="/_vti_bin/blank.gif" height=1 width=1></TD>
        </TR>
        <tr>
         <TD class="Authoringcontrols"><IMG src="/_vti_bin/blank.gif" height=1 width=3px></TD>
         <td class="AuthoringControls">&nbsp;&nbsp;
            <select name="ScriptLanguage">
            <ows:if type=vserver name=ScriptLanguage condition=equal result=>
                <option ID=default_script value="" selected>use default
            </ows:if>    
            <option ID=no_script value="none"
            <ows:if type=vserver name=ScriptLanguage condition=equal result=none>selected
            </ows:if>><ID ID=Noscript>no scripting
            <option value="JavaScript"
            <ows:if type=vserver name=ScriptLanguage condition=equal result=JavaScript>selected
            </ows:if>><ID ID=javascript>JavaScript
            <option value="VBScript"
            <ows:if type=vserver name=ScriptLanguage condition=equal result=VBScript>selected
            </ows:if>><ID ID=VBscript>VBScript
            </select>
         </td>
        </tr>
        <TR>
         <TD class="Authoringcontrols" colspan=3 height=6><IMG src="/_vti_bin/blank.gif" height=20px width=1></TD>
        </TR>
       </TABLE>
      </TD>
     </TR>
     <TR><TD class=ThinSectionLine height=1 colspan=2><IMG src="/_vti_bin/blank.gif" height=1 width=1></TD>
     </TR>
     <TR>
      <TD width=60% class="descriptiontext" rowspan="3" valign="top" align="left">
       <TABLE width=100% border="0" cellpadding=1 cellspacing=0>
        <TR>
         <TD ID=Section5 class=SectionHeader height=28 valign=top>Security Settings</TD>
        </TR>
        <TR>
         <TD ID=Security_Desc class="descriptiontext">Specify which security settings to implement on this server.</TD>
         <TD width=1px></TD>
        </TR>
       </TABLE>
      </TD>
     </TR>
     <TR>
      <TD class="Authoringcontrols" height=6><IMG src="/_vti_bin/blank.gif" height=1 width=1></TD>
     </TR>
        <tr>
      <td class="AuthoringControls">
 <!-- Table for permissions options -->
       <TABLE width=100% border="0" cellpadding=1 cellspacing=0>
        <tr>
        <TD class="Authoringcontrols" width=10><IMG src="/_vti_bin/blank.gif" height=1 width=1></TD>
         <td class="AuthoringControls">
            <input type=checkbox <ows:if type=vserver name=Logging condition=equal result=1>checked
            </ows:if>  
            name="chkLogging" id=logAA  value="1"> <ID ID="log_authoring">Log authoring actions</ID>
         </td>
        </tr>
           <tr>
        <TD class="Authoringcontrols"><IMG src="/_vti_bin/blank.gif" height=1 width=1></TD>
         <td class="AuthoringControls">
            <input type=checkbox <ows:if type=vserver name=RequireSSL condition=equal result=enabled>checked
            </ows:if>  name="chkRequireSSL" id=ReqSSL value="enabled"> <ID ID=Require_SSL> Require SSL for authoring and administration</ID>
         </td>
        </tr>
           <tr>
        <TD class="Authoringcontrols"><IMG src="/_vti_bin/blank.gif" height=1 width=1></TD>

         <td class="AuthoringControls">
            <input type=checkbox <ows:if type=vserver name=NoExecutableCgiUpload condition=notequal result=1>checked
            </ows:if> name="chkNoExecutableCgiUpload" id=Upload value="0"> <ID ID=Upload_Exe> Allow authors to upload executables</ID>
         </td>
        </tr>
        <TR>
         <TD class="Authoringcontrols" colspan=3 height=6><IMG src="/_vti_bin/blank.gif" height=20px width=1></TD>
        </TR>
       </table>
      </td>
     </tr>
     <TR><TD class=ThinSectionLine height=2 colspan=2><IMG src="/_vti_bin/blank.gif" height=1 width=1></TD>
     </TR>
     <TR>
      <TD>&nbsp;</TD>
     </TR>
     <TR>
      <TD align="right" colspan=2 ID=diidSubmitsection>
         <input type=button id=Submit value="    Submit    " onClick="trySend();">
         <input type=button id="btnDefault" value="    Cancel    " onClick="sendCancel();">
      </TD>
     </TR>
     <TR>
      <TD height=2 colspan=2><IMG src="/_vti_bin/blank.gif" height=1 width=1>&nbsp;</TD>
     </TR>
    </TABLE>
   </TD>
  </TR>
 </TABLE>
</TD>
</TR>

</ows:if>  

</table>
</form>
<form action=fpadmcgi.exe method=get name=pages>
    <input type="hidden" name="page" value="vadmin.htm">
    <input type="hidden" name="port" value="<ows:var type=parameter name=port>">
    <input type="hidden" name="frport" value="<ows:var type=parameter name=frport>">
</form>

</body>
</html>