function paint(where, how)
{document.images[where].src="images/"+how+".gif";}
function Hide(where, how)
{
if (document.images){
paint(where, how);}
}
function Show(where, how)
{
if (document.images){
paint(where, how);}
}
