// Popup window for viewing hirez copies of photos
// Programmed by: The Computer Mentor
// Copyright 2002 Bruce E. Kriebel

var dirWin ;

function bigPicPopUp(picURL)
{
  dirWin=window.open(picURL,"dirWin","menubar,status,resizable=yes,scrollbars,height=480,width=640");
}

