/* <![CDATA[ */
/* countdown */

var wait_time_sek = 0;
function count_sek_down () {
  
  print_time = wait_time_sek;
  if(print_time < 10)
  {
    print_time = '0' + print_time;
  }
  
  document.getElementById('countDownText').firstChild.nodeValue = print_time;
  wait_time_sek--;
  if(wait_time_sek < 0)
  {
    window.clearInterval(counting_down_active);
  }
}

function check(name){
  for(i=0;i<document.getElementsByName(name).length;i++){
    document.getElementsByName(name)[i].checked=true;
  }
}
function uncheck(name){
  for(i=0;i<document.getElementsByName(name).length;i++){
    document.getElementsByName(name)[i].checked=false;
  }
}

function borderCol(id,color){ /* parameter: in - out */
  document.getElementById(id).style.borderColor=color;
}

function fadeImg(id,param){ /* parameter: in - out */
  if(param=="in"){
    document.getElementById(id).style.filter='Alpha(opacity=60)';
    document.getElementById(id).style.MozOpacity='0.60';
  }else if(param=="out"){
    /*item_id.style.filter='Alpha(opacity=50)';*/
    document.getElementById(id).style.filter='none';
    document.getElementById(id).style.MozOpacity='1';
  }
}

function openWind(url,name,w,h){
  newWind=window.open(url,name,"width="+w+",height="+h+",resizable=no,scrollbars=no,menubar=no,toolbar=no");
  newWind.focus();
}

/* ]]> */
