//<![CDATA[

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

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

//function openNews(x) {
//  x = "news" + x + ".html";
//  newWindow = window.open(x,"news","width=700,height=400,scrollbars,resizable");
//  return true;
 // }

function openNews(x) {
  x = "news.php?e=" + x;
  newWindow = window.open(x,"news","width=700,height=400,scrollbars,resizable");
  return true;
  }

function openNewsletter(x) {
  x = "docs/" + x + ".pdf";
  newWindow = window.open(x,"newsletter","width=700,height=400,scrollbars,resizable");
  return true;
  }
  
function openWindow(x,y,w,h) {
  newWindow = window.open(x,y,"width=" + w + ",height=" + h + ",scrollbars,resizable");
  return true;
  }

//]]>
