function openWindowNR(file) {
  window.open(file,"","width=748,height=600,left=55,top=50,toolbar=0,menubar=0,copyhistory=0,directories=0,status=0,resizable=1,scrollbars=1");
  }
	
//Show/Hide Element-----------------------------------------------
	/*HTML Usage:
		<a id="DisplayTriggerID" class="hyperlink" 
			 onclick="toggleDisplay('ElementID');"
			 onmouseover="highlightText1(this.id,'on');"
			 onmouseout="highlightText1(this.id,'off');">Display Trigger Text</a> 
		<p id="ElementID" style="display: none;">Text to Show/Hide</p>
	*/
function toggleDisplay(x) {
	var y = document.getElementById(x).style;
	if (y.display=='block')
		y.display='none';
	else
		y.display='block';
	}

function highlightText(x,y) { //2006 PAB standard style for hyperlinks
	var oElement=document.getElementById(x)
	switch (y) {
		case 'on':
			oElement.style.color='#0066CC';
			oElement.style.textDecoration='none';
			break;
		case 'off':
			oElement.style.color='blue';
			oElement.style.textDecoration='underline';					
			break
		}			  
	}
//================================================================	