// JavaScript Document

function MakeVisible(the_div,the_change)

{

if (document.all)

{
	
	div_string = "window.document.all." + the_div + ".style";
	the_div = eval(div_string);
	the_div.visibility = the_change;
}
}
	
	