// JavaScript Document
function hide_show(hide, show){
	hide_me = document.getElementById(hide);
	show_me = document.getElementById(show);
	
			hide_me.style.visibility = 'hidden';
			show_me.style.visibility = 'visible';
			hide_me.style.position = 'absolute';
			show_me.style.position = 'static';
}

/*
function minimize_me(hide, show, action){
	show_what = document.getElementById(show);
	hide_what = document.getElementById(hide);
	var msg = "";
	var ans = true;
	if(action == 'minimize')
		msg = "This inner window will be minimized to the bottom of this column.\nIf you wish to see this window again, click the maximize button of this window."
	else
		msg = "This inner window will me maximized and can be seen on its original location.";
	ans = confirm(msg);
	if(ans == true)
		if(show_what != null && hide_what != null){
			hide_what.style.visibility = 'hidden';
			show_what.style.visibility = 'visible';
			hide_what.style.position = 'absolute';
			show_what.style.position = 'static';
		}
}
*/