// JavaScript Document

function webStart() {
  genLastSideBlockLine();
}

function genLastSideBlockLine() {
  var elemc = document.getElementById('content');
  var elems = document.getElementById('side');
  if (!elemc || !elems) return false;
  var yc = elemc.offsetHeight;
  var ys = elems.offsetHeight;
  if (ys<yc) {
    if (elems.lastChild.nodeType==3) {
      var temp = elems.removeChild(elems.lastChild);
    }
    elems.lastChild.className = 'side-block last';
  }
}

function winOpen(soub,w,h) {
  var start=window.open(soub,'open','width='+ w +',height=' + h +',top=10,left=10');
	start.focus();
}

function showpic(id){
	window.open("../pic_small_show.php?id="+id,"x","toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=auto,resizable=no,width=100,height=100");
}