function displayNewWindow(thisObj, isPDF)
{
	if(thisObj)
	{
		if(isPDF)
			newwindow = window.open(thisObj.href,'offworld','top=100,left=100,width=630,height=500,directories=no,resizable=yes,status=yes,menubar=yes,location=no,scrollbars=yes,toolbar=no'); 
		else
			newwindow = window.open(thisObj.href,'offworld','top=100,left=100,width=688,height=535,directories=yes,resizable=yes,status=yes,menubar=yes,location=yes,scrollbars=yes,toolbar=no'); 
	}
	newwindow.focus();
	return false;
}

function courtRulesDisplayPDFWindow(thisObj) 
{

	newpdfwindow = window.open(thisObj.href,'pdf','top=150,left=150,width=630,height=600,directories=no,resizable=yes,status=yes,menubar=yes,location=no,scrollbars=yes,toolbar=no');
//	newpdfwindow.focus();
	return false;
}
