//CLOCK
function time() {
var now = new Date()
yea = now.getYear()
if(yea <= 2000){yea=yea+1900}
mon = now.getMonth()+1
if (mon<10) {mon="0"+mon}
day = now.getDate()
if (day<10) {day="0"+day}
hou = now.getHours()
if (hou<10) {hou="0"+hou}
min = now.getMinutes()
if (min<10) {min="0"+min}
sec = now.getSeconds()
if (sec<10) {sec="0"+sec}
document.form_clock.clock.value= yea +"."+ mon +"."+ day +"/"+ hou +":"+ min +":"+ sec
setTimeout('time()',1000)
}

//WINDOW OPEN
function URLinNewWindow(url) 
{
  if (url != '')
  {
    window.open(url,  "new","width=525,height=500,durectories=0,location=0,menubar=0,status=0,toolbar=0,scrollbars=1");
  }
}