function picture_popup(url,w,h){
  window.open(url,'','scrollbars=no, toolbar=no, directories=no, location=no, status=no, menubar=no, resizable=no, width='+(w)+', height='+(h)+'');
}

function showhide(elem,state){
  document.getElementById(elem).style.display=state;
}