
// Clock
var str1 = '<table width=100% border=0 cellspacing=0 cellpadding=0 align=left style="Z-INDEX: 60; POSITION: absolute; TOP: 210px;"><tr><td align="right">&nbsp;<span class="dgrey s10">'
document.write(str1);

function GetMonth(intMonth){
 var MonthArray = new Array("января", "февраля", "марта", "апреля", "мая", "июня",
"июля", "августа", "сентября", "октября", "ноября", "декабря") 
return MonthArray[intMonth] 	 	 
}
function getDateStr(){
var today = new Date()
var year = today.getYear()
if(year<1000) year+=1900
var todayStr = today.getDate() + "&nbsp;" + GetMonth(today.getMonth())
//todayStr += "&nbsp;" + year
return todayStr
}
document.write(' ' + getDateStr() + ' - ')

var str2 = '</span><span id=tick2></span>'
document.write(str2);

function show2(){
if (!document.all&&!document.getElementById)
return
thelement=document.getElementById? document.getElementById("tick2"): document.all.tick2
var Digital=new Date()
var hours=Digital.getHours()
var minutes=Digital.getMinutes()
var seconds=Digital.getSeconds()
var dn=""
//var dn="PM"
if (hours<12)
dn=""
//dn="AM"
if (hours>12)
hours=hours-12
if (hours==0)
hours=12
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
var ctime=hours+":"+minutes+":"+seconds+"&nbsp;"+dn
thelement.innerHTML="<span class='dgrey s10'>"+ctime+"</b>"
setTimeout("show2()",1000)
}
//window.onload=show2
var str3 = '</span>&nbsp;&nbsp;</td></tr></table>'
document.write(str3);
// ********************************************************************************


// Show-Big-Image
<!---
var bigpicWin = null;

function showbigimage(url, picwidth, picheight, description)
{
if (!bigpicWin || bigpicWin.closed)
{
usrwidth = screen.width;
usrheight = screen.height;

winwidth = picwidth;
winheight = picheight;

//var X = (usrwidth - winwidth) / 2;
//var Y = (usrheight - winheight) / 2;
var X = 10;
var Y = 10;
properties = "toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,copyhistory=no,width="+winwidth+",height="+winheight+",";

checkie = navigator.appName.indexOf("icrosoft");
if (checkie == -1)
{
properties = properties+"screenX="+X+",screenY="+Y;
}
else
{
properties = properties+"left="+X+",top="+Y;
}
bigpicWin = window.open('','bigpicWin',properties);

bigpicWin.document.open();
bigpicWin.document.write('<HTML><HEAD>');
bigpicWin.document.write('<TITLE>'+'Big Image'+'</TITLE>');
bigpicWin.document.write('<meta http-equiv="imagetoolbar" content="no"><style>.large {FONT-WEIGHT: bold; FONT-SIZE: 16px; COLOR: 0D5209; FONT-FAMILY:  Arial; TEXT-DECORATION: none}</style></HEAD>');
bigpicWin.document.write('<BODY marginwidth=0 marginheight=0 leftmargin=0 topmargin=0 bottommargin=0 rightmargin=0>');
bigpicWin.document.write('<table width=100% border=0 cellpadding=0 cellspacing=0><!--tr><td background=images/index_09-1.jpg><img src=images/0.gif width=223 height=26></tr-->');
bigpicWin.document.write('<tr><td class=large align=center><A HREF="JavaScript:self.close()"><IMG SRC="'+url+'" border=0>'+'</A></td></tr>');
bigpicWin.document.write('<tr><td align=center>' +description+ '</td></tr>');	
bigpicWin.document.write('<!--tr><td background=images/index_09-1.jpg height=26>&nbsp;</td></tr--></table></BODY></HTML>');
bigpicWin.document.close()

bigpicWin.focus();
}
else
{
bigpicWin.focus();
}
}
//--->
//*****************************************************************************

// Jump-To-Top
<!-- Begin
function setVariables() {
imgwidth=25;
imgheight=2;
if (navigator.appName == "Netscape") {
horz=".left";
vert=".top";
docStyle="document.";
styleDoc="";
innerW="window.innerWidth";
innerH="window.innerHeight";
offsetX="window.pageXOffset";
offsetY="window.pageYOffset";
}
else {
horz=".pixelLeft";
vert=".pixelTop";
docStyle="";
styleDoc=".style";
innerW="document.body.clientWidth";
innerH="document.body.clientHeight";
offsetX="document.body.scrollLeft";
offsetY="document.body.scrollTop";
   }
}
function checkLocation() {
objectXY="branding";
var availableX=eval(innerW);
var availableY=eval(innerH);
var currentX=eval(offsetX);
var currentY=eval(offsetY);
x=availableX-(imgwidth+30)+currentX;
y=availableY-(imgheight+20)+currentY;
evalMove();
setTimeout("checkLocation()",10);
}
function evalMove() {
eval(docStyle + objectXY + styleDoc + horz + "=" + x);
eval(docStyle + objectXY + styleDoc + vert + "=" + y);
}
// End -->
//*************************************************************************************************