function uknow(who2, dom2, who1, disp, cl, dom1) {
var h = '<a href="';
var m = "ma***o:";
var a = "@";
  m = m.replace('***', 'ilt');
  if (cl != "") {
    cl = ' class="' + cl + '"';
  }
  if (disp == "") {
    document.write(h+m+who1+who2+a+dom1+dom2+'" ' + cl + '>'+who1+who2+a+dom1+dom2+'</a>');
  }
  else {
    document.write(h+m+who1+who2+a+dom1+dom2+'" ' + cl + '">'+disp+'</a>');
  }
}

function getWindowWidth(){
  var ww = 0;
  d = document;
   if ( typeof window.innerWidth != 'undefined' )
     ww = window.innerWidth;  // NN and Opera version
   else
   {
     if ( d.documentElement
       && typeof d.documentElement.clientWidth!='undefined'
       && d.documentElement.clientWidth != 0 )
       ww = d.documentElement.clientWidth;
     else
       if ( d.body
         && typeof d.body.clientWidth != 'undefined' )
         ww = d.body.clientWidth;
     else ww = 800;
   }
   return ww;
}

function Show_Tab(which) {
  x = document.getElementById("tabs_header");
  y = x.getElementsByTagName("li");
  for (var i=0;i<y.length;i++) {
    if (y[i].id == "current") {
      y[i].id = "";
    }
    d = document.getElementById("div"+i);
    if (d) {
      d.style.display="none";
    }
  }
  y[which].id="current";
  d = document.getElementById("div"+which);
  if (d) {
    d.style.display="block";
  }
  return false;
}
