function Ramka1(part, width)
{
if (part=='up')
 {
  document.write('<table '+((width !='')?'width="'+width+'"':'')+' cellpadding="0" cellspacing="0" border="0" align="center">');
  document.write('	<tr>');
  document.write('		<td width="20"><img src="/images2/design/ramka2/up_left.gif" width="20" height="20" alt=""></td>');
  document.write('		<td width="*" style="background-image: url(\'/images2/design/ramka2/top.gif\')"></td>');
  document.write('		<td width="20"><img src="/images2/design/ramka2/up_right.gif" width="20" height="20" alt=""></td>');
  document.write('	</tr>');
  document.write('	<tr>');
  document.write('		<td style="background-image: url(\'/images2/design/ramka2/left.gif\')"></td>');
  document.write('		<td width="100%">');
 }
else if (part=='down')
 {
  document.write('		</td>');
  document.write('		<td style="background-image: url(\'/images2/design/ramka2/right.gif\')"></td>');
  document.write('	</tr>');
  document.write('	<tr>');
  document.write('		<td><img src="/images2/design/ramka2/down_left.gif" width="20" height="20" alt=""></td>');
  document.write('		<td style="background-image: url(\'/images2/design/ramka2/bottom.gif\')"></td>');
  document.write('		<td><img src="/images2/design/ramka2/down_right.gif" width="20" height="20" alt=""></td>');
  document.write('	</tr>');
  document.write('</table>');
 }
}