
function photoview(pMonth,pTitle,pDescript,pPhotog,pOrient) {

var wHeight = 550;
var wWidth = 625;

if(pOrient == "p") {
   var wHeight = 650;
   var wWidth = 500;
   }



 new_window=open('','name','height=' + wHeight + ',width=' + wWidth + ',scrollbars=yes');

  new_window.document.open();
  
  new_window.document.write('<html><head><title>' + pTitle + '</title>');
  new_window.document.write('<link href="http://www.focuscommunities.com/cssmaster.css" rel="stylesheet" type="text/css">');
  new_window.document.write('</head><body bgcolor="#F5F5F5">');
  new_window.document.write('<p align="center" class="BodyNormal LinkOff"><a href="javascript:self.close()">Close Window</a><br>');
  new_window.document.write('<p align="center" class="BodyNormal">' + pDescript + '</p>');
//  new_window.document.write('<div align="center"><img src="/faces_places/' + pMonth + '/images/' + pTitle + '" border="2"></div>');
  new_window.document.write('<div align="center"><a href="javascript:self.close()"><img src="/faces_places/' + pMonth + '/images/' + pTitle + '" border="2" alt="Click to close"</div></a>');
  new_window.document.write('<p align="center" class="BodyCaption">' + pTitle );

  if(pPhotog != "") {
     new_window.document.write(' / (Photographer: ' + pPhotog + ')</p>');
  }
  
  new_window.document.write('</body></html>');
  new_window.document.close();
}

function close_window() {
	new_window.close();
}