//Begin function for automatic resized pictures
function PopupPic(sPicURL) { 
     window.open( "popup.html?"+sPicURL, "",  
     "resizable=1,HEIGHT=200,WIDTH=200"); 
   } 
// End picture function


// Begin function for information pop-up windows within site
function infoWin (URL) {
window.open(URL,'fullWindow','width=500,height=350,top=20,left=20,scrollbars');
}
// End information pop-up function