
function NewWin(obj)
	{
	newWindow = window.open('','enlargedwindow',"resizable=yes,width=780,height=580")
	newWindow.document.open()
	newWindow.document.writeln('<html><head><title>Terria Development - screenshot</title></head>')
	newWindow.document.writeln('<body bgcolor="white" leftmargin="0" marginheight="10" marginwidth="0" topmargin="10">')
	newWindow.document.writeln('<table width="100%" border="0" cellspacing="2" cellpadding="0" height="100%">')
	newWindow.document.writeln('<tr><td align="center" valign="middle">')
	newWindow.document.writeln('<img src="' + obj.href + '" border="0" alt="Screenshot"></td></tr></table>')
	newWindow.document.writeln('</body></html>')
	newWindow.document.close()
	}
