function showDetail(id) 
{
	if(is.dom)
	{
		if(id != null)
		{
			var div = document.getElementById(id);
			if(div != null) div.style.display = 'block';
		}
	}

}
function hideDetails(ids) 
{
	if(is.dom)
	{
		var div = null;
		if(ids != null)
		{
			for(var i = 0 ; i < ids.length; i++)
			{
				div = document.getElementById(ids[i]);
				if(div != null) div.style.display = 'none';
			}
		}
	}

}





function popWindow(url,width,height,posx,posy,scroll) 
{
	if (is.ie4 && ! is.mac) 
	{
		width += 10;
		height += 28;
	}
	myWindow = window.open(url, "windowName", 'resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='+scroll+',width='+width+',height='+height+',screenX='+posx+',screenY='+posy+',left='+posx+',top='+posy+'');
	myWindow.resizeTo(width, height);
	myWindow.focus();
}
