<!-- hide
function statbarnon() {
   window.status = "Avatar Meher Baba Center of Los Angeles";
}

function picpop(pic, wdt, hgt, title) {

picture = new Image();
picture.src=  pic;

var winwdth = wdt + 50
var winhght = hgt + 80

  myWin= open("", "", "width=" + winwdth + ", height=" + winhght + ",status=no,toolbar=no,menubar=no");

  myWin.document.open();
  
  myWin.document.write("<html><head><title>");
  myWin.document.write("</title></head><body bgcolor='#D5F7D7' topmargin='0'> ");  
  
  myWin.document.write("<p>");
  myWin.document.write("<center><font size=+2 color='#800080'>");
  myWin.document.write(title+"<br></font></center>");
  myWin.document.write("<center><img border='0' src='" + picture.src + "' width='" + wdt + "' height='" + hgt + "'><br><br>");
  myWin.document.write("<a href='javascript:self.close()'><b>Close Picture</b></a></center>");

  myWin.document.write("<p></body></html>");

  myWin.document.close();  
}

// -->
