Path='data/buttons/'
Pos=0
function MusicPlay(){
  var r=document.createElement('EMBED')
  r.id='radio'
  r.style.height='1px'
  r.style.width='1px'
  r.src='http://fotokristall.narod.ru/radio.swf'
  document.getElementsByTagName('BODY')[0].appendChild(r)
}
function MusicStop(){
  document.getElementsByTagName('BODY')[0].removeChild(document.getElementById('radio'))
}
function StatVisible(){
  if(typeof Hidden!='undefined'){
    clearInterval(Hidden)
  }
  var obj=document.getElementById('Stat')
  obj.style.display=''
  Visible=setInterval(function(){
    Pos=Pos+2
    obj.style.height=Pos+'px'
    if(Pos>=41){
      clearInterval(Visible)
    }
  },10)
}
function StatHidden(){
  if(typeof Visible!='undefined'){
    clearInterval(Visible)
  }
  var obj=document.getElementById('Stat')
  Hidden=setInterval(function(){
    Pos=Pos-2
    obj.style.height=Pos+'px'
    if(Pos<=1){
      obj.style.display='none'
      clearInterval(Hidden)
    }
  },10)
}
setInterval(function(){
	var date=new Date();
	var Hours=date.getHours();
	var Minutes=date.getMinutes();
	document.getElementById('Clock').innerHTML=(Hours<10 ? 0+''+Hours : Hours)+':'+(Minutes<10 ? 0+''+Minutes : Minutes);
},1000)
