function imgswap(id_img, height_min, height_max)
{
	if(document.getElementById(id_img).style.height == (height_min+"px"))
		document.getElementById(id_img).style.height = (height_max+"px");
	else
		document.getElementById(id_img).style.height = (height_min+"px");
}
function toggledisp(id1, id2)
{
	d1 = document.getElementById(id1);
	d2 = document.getElementById(id2);

	if(d1.style.display == "block")
	{
		d1.style.display = "none";
		d2.style.display = "block";
	}
	else
	{
		d1.style.display = "block";
		d2.style.display = "none";
	}
}
