/*
popPic example:

popPic("./img/pic1", "My Picture Title", "wide");

note: function adds .jpg extension
*/

function popPic(picName, caption, style)
{
	switch(style)
	{
		case 'wide':
		
			newWin = window.open('', 'newWin', 'width=520,height=400, scrollbars=no,status=yes') ;
			break;
		case 'tall':
			newWin = window.open('', 'newWin', 'width=400,height=520, scrollbars=no,status=yes');
			break;
			
	}
	newWin.document.write('<html><head><title>' + caption +'</title></head><body><img border=1px src=./img/' + picName + '.jpg /></body></html>');
}