<!--
// x = Window address
// y = Window name
// w = Window width
// h = Window height
var x,y = ""
var w,h = 100

function openPicture(x) {
  x = "picture.php?f=" + x;
  newWindow = window.open(x,"picture","width=520,height=430,scrollbars,resizable");
  return true;
  }

function openWindow(x,y,w,h) {
  newWindow = window.open(x,y,"width=" + w + ",height=" + h + ",scrollbars,resizable");
  return true;
  }

// -->
