function OpenDescription(url)
	{
	url = url + ".html";
	NewWin=window.open(url,'NewWin','toolbar=no,title=no,status=no,width=300,height=300');
	return true;
	}
function CloseDescription()
	{
	NewWin.close();
	}
function Describe(url2)
	{
	OpenDescription(url2);
	return true;
	}
function openHWindow(imgURL,imgDesc)
	{
	imgWin=window.open("","",'toolbar=no,location=no,directories=no,title=no,status=no,width=655,height=520');
	imgWin.document.writeln("<body bgcolor='##F7FFCE'>")
	tag='<img src='
	tag+=imgURL
	tag+=' width="640" height="480" border=0>'
	imgWin.document.writeln(tag)
	imgWin.document.writeln("</body>")
	tag='<center>'
	tag+=imgDesc
	tag+='</center>'
	imgWin.document.writeln(tag)
	}

function openVWindow(imgURL,imgDesc)
	{
	imgWin=window.open("","",'toolbar=no,location=no,directories=no,title=no,status=no,width=494,height=670');
	imgWin.document.writeln("<body bgcolor='#F7FFCE'>")
	tag='<img src='
	tag+=imgURL
	tag+=' width="480" height="640" border=0>'
	imgWin.document.writeln(tag)
	imgWin.document.writeln("</body>")
	tag='<center>'
	tag+=imgDesc
	tag+='</center>'
	imgWin.document.writeln(tag)
	}

function openTWindow(imgDesc)
	{
	imgWin=window.open("","",'toolbar=no,location=no,directories=no,title=no,status=no,width=400,height=300');
	imgWin.document.writeln("<body background='paper_greenwhite.gif'></body>")
	tag='<align=left font=size=3>'
	tag+=imgDesc
	tag+='</font>'
	imgWin.document.writeln(tag)
	}

