//<![CDATA[

// x = Window address
// y = Window name
// w = Window width
// h = Window height
var x,y = "";
var w,h = 100;

function openWindow(x,y,w,h) {
  newWindow = window.open(x,y,"'width=' + w + ',height=' + h + ',scrollbars,resizable");
  return true;
  }

function openAlbum(x) {
  x = "albumpopup.php?a=" + x + "&p=" + 1;
  newWindow = window.open(x,"album","width=600,height=400,scrollbars,resizable");
  return true;
  }

function openEvent(x) {
  x = "eventpopup.php?e=" + x;
  newWindow = window.open(x,"event","width=600,height=400,scrollbars,resizable");
  return true;
  }

function openMember(x) {
  x = "member.php?u=" + x;
  newWindow = window.open(x,"popup","width=600,height=400,scrollbars,resizable");
  return true;
  }

function openPhoto(x) {
  x = "photo.php?p=" + x;
  newWindow = window.open(x,"popup","width=600,height=400,scrollbars,resizable");
  return true;
  }

//]]>
