<!--
var steps=0;
var isIEcrap = false; var isIE = false;
var arVersion = navigator.appVersion.split("MSIE");
if(arVersion.length>1){
var version = parseFloat(arVersion[1]);
  if (version<6)isVeryOldIEcrap = true;
  else
  if (version<8)isIEcrap = true;
  isIE = true;
}

function yypGetElementById(id) {
	return (document.getElementById ? document.getElementById(id) : document.all ? document.all[id] : false)
}
function pixNum(pn) {
  mystring=pn;
  mystring=mystring.slice(0,mystring.indexOf("px"));
  if (mystring=='') {return Number(0)} else return Number(mystring);
}
function getTheImage(iname) {
    cntPict=document.images.length;
    for (i=0;i<=(cntPict-1);i++)
      {
      if (document.images[i].name!=null)
           {picname=document.images[i].name;}
      else
           {picname='null';}
     
      if (picname.indexOf(iname)>=0) {return document.images[i]}
      }
  }

function upDetail(tn)       {
  ts=tn.src;
  re = "html";
  ts=ts.replace(re,"pict");
  im=yypGetElementById('pic0');
  im.src=ts;
  sti=yypGetElementById('stitok');
  sti.style.display='none';
  //alert(sti);  
};
  
//:stop!hammertime
function stairs()     {
  if (steps<=10)
  {
  for (i=1;i<10;i++)
    {
      step='step'+String(i);
      im=yypGetElementById(step);
      if(!im){
      
      }else{
        if (i==steps)
        {
        //im.style.height=String(16+((16*i)/4))+'px';
        im.style.height='20px';
        }else
        {
        //if (steps==10) im.style.height='';
        im.style.height='';
        }
      }//exists  
    }
  }
  var stairID = setTimeout("stairs()",100);
  steps=steps+1;
  if (steps>90) {steps=1};
};  

 function rollon(im) {var img=im; var an=img.src; en=an.slice(an.length-3,an.length); an=an.slice(0,an.length-5); img.src=an+"b."+en;}; 
 function rollout(im){var img=im; var an=img.src; en=an.slice(an.length-3,an.length); an=an.slice(0,an.length-5); img.src=an+"a."+en;}; 

 function rbon(im) {var img=im.parentNode.firstChild; var an=img.style.backgroundImage; dot=an.lastIndexOf("."); en=an.slice(dot+1,an.length); an=an.slice(0,dot-1); img.style.backgroundImage=an+"b."+en;}; 
 function rbout(im){var img=im.parentNode.firstChild; var an=img.style.backgroundImage; dot=an.lastIndexOf("."); en=an.slice(dot+1,an.length); an=an.slice(0,dot-1); img.style.backgroundImage=an+"a."+en;}; 

 function rion(im) {var img=im.firstChild; var an=img.src; dot=an.lastIndexOf("."); en=an.slice(dot+1,an.length); an=an.slice(0,dot-1); img.src=an+"b."+en;}; 
 function riout(im){var img=im.firstChild; var an=img.src; dot=an.lastIndexOf("."); en=an.slice(dot+1,an.length); an=an.slice(0,dot-1); img.src=an+"a."+en;}; 

 function rollmeon(im) {var img=document.getElementById(im);  var an=img.style.display; img.style.display="block";};
 function rollmeout(im){var img=document.getElementById(im);  var an=img.style.display; img.style.display="none";};

 function rollonx(a,b) {rollon(a);rollmeon(b);};
 function rolloutx(a,b){rollout(a);rollmeout(b);};
 
 function goto(addr) {window.location.href=addr;}
 
 function nil(){} 
 
 function loadOnBgr(a,b){
   i = new Image;
   i.onload = function(){a.onload = nil;a.src = i.src;}
   i.src = b;
 }
 var wh=0;var ww=0;
 function zadel(){
    if(window.outerHeight==undefined){
    var s = "document.body.clientHeight:"+document.body.clientHeight+"<br>outerHeight:"+window.height+"<br>";
    s = s+"document.body.clientWidth:"+document.body.clientWidth+"<br>clientWidth:"+window.width+"<br>";
    wh = document.body.clientHeight;
    ww = document.body.clientWidth;
    }else{
    var s = "innerHeight:"+window.innerHeight+"<br>outerHeight:"+window.outerHeight+"<br>";
    s = s+"innerWidth:"+window.innerWidth+"<br>outerWidth:"+window.outerWidth+"<br>";
    wh = window.innerHeight;
    ww = window.innerWidth;
    }
    var g = document.getElementById('centralbox');
    
    if(isIE){
      g.style.height = Math.floor(Number(wh)-30)+'px';
    }else{
      g.style.minHeight = Math.floor(Number(wh)-30)+'px';
    }
  }

 function startme(){
   zadel();
   stairs();
 } 
 
 
//-->