<!--
function makeRemote() 
{
remote = window.open("","remotewin","width=350,height=400");
remote.location.href = "http://webreference.com/javascript/970106/remote.html";
if (remote.opener == null) remote.opener = window;
remote.opener.name = "opener"; 
}
// -->

<!--
	function openWin( windowURL, windowName, windowFeatures  ) { 
	if (windowFeatures == null) windowFeatures = 'width=400,height=400,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=1';
		return window.open( windowURL, windowName, windowFeatures ) ; 
	} 
// -->

<!-- 
function goUrl(Selected) {
	
	var newURL = Selected.options[Selected.selectedIndex].value ;
	if (newURL!=" ") {
		document.location.href = newURL;
	}
}
//  -->
<!-- 
function copyText( obj ) {
if (obj.type=="text" || obj.type=="textarea"){
var rng = obj.createTextRange();
} else {
var rng = document.body.createTextRange();
rng.moveToElementText(obj);
}
rng.scrollIntoView();
rng.select();

if (confirm('Copy the selected text to the ClipBoard?')) rng.execCommand("Copy");
rng.collapse(false);
rng.select();
}
// -->

<!--

function textCounter(field, maxlimit) 
{
if (field.value.length > maxlimit) // if too long...trim it!
field.value = field.value.substring(0, maxlimit);
}
//-->
<!--
var fullWidth;
function init() {
// Get width of window, need to account for scrollbar width in Netscape.
fullWidth = getWindowWidth() - (isMinNS4 && getWindowHeight() < getPageHeight() ? 16 : 0);
myNavBar1.resize(fullWidth);
myNavBar1.create();
myNavBar1.setzIndex(2);
}
//-->

<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->

		
