var win = null;
var s;
var h;
var w;
var t;
var l;
var header;
var imgSource;


function enlargePic( page, imgFileName, scrolling, height, width, text ) {
  imgSource = "galleryPics/" + imgFileName + "_big.jpg";
  
  if( page == "events") imgSource = "eventsIMGs/actual/" + imgFileName + ".jpg";
  else if( page == "funAndGames" ) imgSource = "funAndGamesPics/" + imgFileName + "_big.jpg";
  
  s = scrolling;
  h = height;  		
  w = width;				
  t = ( screen.height - h ) /2
  l = ( ( screen.width - w ) / 2 )	- 10
  
  var txt = ""
  if( text != "" ) { txt = "<div class='whiteText' style='margin-top:5px; text-align:center;'>" + text + "</div>" }
  
  win = window.open( "", "", "toolbar=no, status=no, menubar=no, resizable=no, scrollbars=" + s + 
				             ", top=" + t +", left=" + l + ", width=" + w + ", height=" + h, true );
  
  win.document.write( "<html>" +
					    "<head>" + 
						  "<title>TempleTreats</title>" + 
						  "<link href='styleSheet.css' rel='stylesheet' type='text/css'>" +
						"</head>" +
					    "<body style='margin:0px;'>" +
						  "<div><img src='" + imgSource + "' style='display:block;' /></div>" +  txt +						  
						"</body>" +
					  "</html>" );
					  
  win.document.close();
  win.focus();
  win = null;
}