function gclose(i)
{
	document.all["group"+i].style.display="none"
	document.all["head"+i].style.display="block"

}

function gopen(i)
{
	document.all["head"+i].style.display="none"
	document.all["group"+i].style.display="block"
}

function ShowThisPic(WinName, Features, ThePic, TheTitle)
{
	var OpenWindow=window.open('', WinName, Features);
	OpenWindow.document.write("<HTML>")
	OpenWindow.document.write("<HEAD>")
	OpenWindow.document.write("<TITLE>",TheTitle,"</TITLE>")
	OpenWindow.document.write("</HEAD>")
	OpenWindow.document.write("<BODY leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>")
	OpenWindow.document.write("<img src=",ThePic," alt='",TheTitle,"'>")
	OpenWindow.document.write("</HTML>")
}
