


// new window
function OpenNewWindow (popupURL,x,y) {
  var string;

  string = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,left=0,top=0";
  string += ",width=";
  string += x;
  string += ",height=";
  string += y;

  var popup =window.open(popupURL,"PopupWindow",string)
  if( navigator.appName.substring(0,8) == "Netscape" )
  popup.location = popupURL
  popup.opener = self
}
//--->

// open album
function OpenAlbum (popupURL,x,y) {
  var string;

  string = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0,left=0,top=0";
  string += ",width=";
  string += x;
  string += ",height=";
  string += y;

  var popup =window.open(popupURL,"PopupWindow",string)
  if( navigator.appName.substring(0,8) == "Netscape" )
  popup.location = popupURL
  popup.opener = self
}
//--->
