// JavaScript Document

function menuShow(o)
{
	var a = document.getElementById('a_'+o);
	var d = document.getElementById('d_'+o);
		if (d.offsetHeight != 0)
		{
			//visible
			d.style.display = 'none';
			a.style.background = 'url(/_f/i/bg/black_plus.gif) no-repeat';
		}
		else
		{
			d.style.display = 'block';
			a.style.background = 'url(/_f/i/bg/black_minus.gif) no-repeat';
		}	
	return false;
}

function showPic(w,h,u)
{
	window.open(u,'popup','directories=no,location=no,menubar=no,resizable=yes,status=no,toolbar=no,scrollbars=yes,width='+w+',height='+h);
	return false;
}
