// Создание окна "Сайт"

function showWindow()
{
var htmlText="<html>"+ 
"<head><title>Сайт</title></head>"+
"<body bgcolor='#C0D09F' topmargin='0' leftmargin='0' link='#E4ECDF' vlink='#E4ECDF' alink='#FFFF00'>"+
"<table border='1' width='100%' height='100%' bordercolor='#C8C888' cellspacing='1' cellpadding='0'>"+
"  <tr>"+
"    <td bordercolorlight='#808080' bordercolordark='#808080' class=main>"+
"       <center>"+
"       <p class=mainText>"+
"       <table>"+
"       <tr><td>Site design:</td><td>Rakitin Andrey Yurievitch</td></tr>"+
"       <tr><td>Typesetting:</td><td>Nikita '&Mu;&epsilon;&rho;&lambda;&iota;&nu;' Kipriyanov</td></tr>"+
"       <tr><td>Information:</td><td>Evgeny Stegantsev</td></tr>"+
"       </table>"+
"       Last update: 20.03.2006 г. <br>"+
"       </p>"+
"       </center>"+
"     </td>"+
"   </tr>"+
"</table>"+
"</body></html>";

  myWindow= open("", "displayWindow", "width=600, height=160, status=yes, toolbar=yes, menubar=yes");
  myWindow.document.open();             // открыть объект document для последующей печати 
  myWindow.document.write(htmlText);    // генерировать новый документ
  myWindow.document.close();            // закрыть документ - (но не окно!)
}

function showBottomLinks()
{

document.write("<center>"+
"<font color=#003366>"+
"<a href=\"about-company.html\"><font size=2 color=#003366>About company</font></a>&nbsp;|&nbsp;"+
"<a href=\"services.html\"><font size=2 color=#003366>Services</font></a>&nbsp;|&nbsp;"+
"<a href=\"information.html\"><font size=2 color=#003366>Useful information</font></a>&nbsp;|&nbsp;"+
"<a href=\"documents.html\"><font size=2 color=#003366>Standard documents</font></a>&nbsp;|&nbsp;"+
"<a href=\"expo.html\"><font size=2 color=#003366>Business information</font></a>&nbsp;|&nbsp;"+
"<a href=\"mail.html\"><font size=2 color=#003366>Feedback</font></a>&nbsp;|&nbsp;"+
"<a href=\"http://www.comch.ru/~icc/releascom\"><font size=2 color=#003366>ReLeasCom</font></a>&nbsp;|&nbsp;"+
"<a href=\"javascript:showWindow()\"><font size=2 color=#003366>Site developers</font></a>"+
"</font>"+
"</center>");
}

showBottomLinks();
