with (document)
{writeln('<Table Border=0 CellSpacing=0 CellPadding=2>');
writeln('<Tr><Form Name="ccDoubleList"><Td Align=Left>');
writeln('<Select style="color:black;background-color:#F3E9BE;font-size:10pt;font-weight: bold" Name="ccBitsyG" onChange="changeMenu(this.form)">');
tot = ccselect.length; 
for (i = 0; i < tot; i++)
writeln("<Option>" +ccselect[i]);
writeln("</Select>");
writeln('</Td></Tr><Tr><Td>');
writeln('<Select style="color:black;background-color:#F3E9BE;font-size:10pt;font-weight: bold" Name="ccDoubleZ">');
for (i = 0; i < maxLength; i++)
writeln("<OPTION>" +website[i]);
writeln("</Select>");
for (i = maxLength; i > trueLength; i--) 
{ccDoubleList.ccDoubleZ.options[i] = null;}
writeln('</Td></Tr><Tr align="left"><Td Valign=bottom ><A Href="javascript:changePage();">');
writeln('<Img Src="../../../images/but_form.jpg" width="55" height="15" Border=0 alt="Читать"></A>');
writeln('</Td></Tr>');
changeMenu();
writeln('</Form>');
writeln('</Table>');}