function loadFrames(justice) {
	parent.location.right.href="../"+justice+"bio.html";
	parent.location.middle.href="../"+justice+"pic.html";
}

function new_window(url,name,scroll,width,height,top,left) 
{ 
     link = window.open(url,name,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars="+ scroll +",resizable=0,width="+ width +",height="+ height +",left="+ left +",top="+ top +""); 
} 
	/*
		tableruler()
		written by Chris Heilmann for alistapart.
		enables a rollover of rows for each table with the classname "hlrows"
	*/
	
function tableruler()
{
	if (document.getElementById && document.createTextNode)
	{
		var tables=document.getElementsByTagName('table');
		for (var i=0;i<tables.length;i++)
		{
			if(tables[i].className=='ruler')
			{
				var trs=tables[i].getElementsByTagName('tr');
				for(var j=0;j<trs.length;j++)
				{
					if(trs[j].parentNode.nodeName=='TBODY')
					{
						trs[j].onmouseover=function(){this.className='ruled';return false}
						trs[j].onmouseout=function(){this.className='';return false}
					}
				}
			}
		}
	}
}
window.onload=function(){
	tableruler();
} 