// JavaScript Document

var picw;

function switc(obj){
 if(document.getElementById){
 var el = document.getElementById(obj);
  if(el.style.display != "block"){
   el.style.display = "block";
  }else{
   el.style.display = "none";
  }
 }
}

function newWin(url, w, h){
  picw = window.open(url, 'tgpic', 'status=0,menubar=0,toolbar=0,location=0,directories=0,resizeable=0,scrollbars=0,width='+w+',height='+h);
}
