<!--
var selected = -1;
function menuItem(i, state)
{
var type = 'a';
if(selected == i || state == 2)
type = 'c';
else if(state == true)
type = 'b';
eval('document.all.btn_'+i).src=eval('btn_'+(type=='c'?i+'_':'')+type).src;
}

function imageJumper(img, max)
{
  var l = img.src.length;
  var i = img.src.substring(l-5, l-4);
  i++;
  if(i>max)
   i = 1; 
  setTimeout(img.id+".src = "+img.id+""+i+".src;", 1500);
}

function link(url)
{
  var l = 0, t = 75, b = 200, x = 0, y = 0, w = 0, h = 0;
  if(document.all) {
    x = window.screenLeft + l;
    y = window.screenTop + t;
    w = document.body.clientWidth - l - 10;
    h = document.body.clientHeight - t - b - 20;
  }
  else if(document.layers) {
    x = window.screenX + l;
    y = window.screenY + t;
    w = self.innerWidth - l;
    h = self.innerHeight - t - b;
  }
  var kcn = window.open(url,'kcn',''
    + 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,border=no,'
    + 'width='+w+',height='+h+',left='+x+',screenX='+x+',top='+y+',screenY='+y
  );
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->