// JavaScript Document
<!--
function popImage(picURL){
	newWindow=window.open(picURL,'newWin','scrollbars=yes,toolbar=no,width=500,height=550')
	newWindow.document.write('<html><head><title>FSU Music Center Photo Gallery Image<\/title><\/head><body topmargin="10" leftmargin="0"><center><img src="'+picURL+'"><form><input type="button" value="Close Window" onClick="window.close()"><\/form><\/center><\/body><\/html>')
	newWindow.focus()
		}
// -->

