

//####################################//


function hdrMenu(elem, act)
{
	if(act=='display')
	{
		elem.className='sel';
	}
	else if(act=='hide')
	{
		elem.className='';
	}
}


//####################################//


function imgWnd(obj)
{
	if(obj == null)
		return false;

	var name = "imgWnd" + Math.ceil( Math.random() * 3000 );
		
	if(obj.tagName == "A" & obj.getAttribute("href") != null)
	{
		var loc = obj.getAttribute("href");
		wnd = window.open(loc , name, 'toolbar=no,menubar=no,location=no,directories=no, scrollbars=yes,resizable=yes,status=no,width=400,height=300');
		wnd.focus();
		return false;
	}
	else
	{
		return true;
	}
}


//####################################//

