
// function for image rollovers
function changeImg(whichImg,newSrc) {
	if (document.images) {
		document.images[whichImg].src = newSrc;
  	}
	else return;
}


function MM_openBrWindow(theURL, features)
{
  LargePicWindow = window.open('', 'LargePicView', features);
  LDoc = LargePicWindow.document;
  LDoc.write('<html>\n<head>\n<title>Large Picture View</title>\n');
  LDoc.write('<style type="text/css">\n');
  LDoc.write('body {margin: 0px;	font: 16px times, verdana, sans-serif}\n');
  LDoc.write('</style>\n</head>\n\n');
  LDoc.write('<body>\n<center>\n<img src="'+ theURL + '" name="LargePic">\n');
  LDoc.write('</center>\n');
  LDoc.write('</body>\n</html>\n');
  LDoc.close();
  
  LargePicWindow.moveTo(0, 0); 
  LargePicWindow.focus();      
}	
