function paint(where, how)

{document.images[where].src="images/old/"+how+".gif";}

function paint2(where, how)

{document.images[where].src="images/old/"+how+".gif";}


function Hide(where, how)

{

if (document.images){

paint(where, how);}

}

function Show(where, how)

{

if (document.images){

paint(where, how);}

}

function Hide2(where, how)

{

if (document.images){

paint2(where, how);}

}

function Show2(where, how)

{

if (document.images){

paint2(where, how);}

}