//<![CDATA[

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

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

function openPopup(x) {
  newWindow = window.open(x,"popup","width=400,height=300,scrollbars,resizable");
  return true;
}

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

//]]>

