<!--
var bName = navigator.appName;
var bVer = parseInt(navigator.appVersion);
var NS4 = (bName == "Netscape" && (bVer >= 4 && bVer < 5));
var IE4 = (bName == "Microsoft Internet Explorer" && bVer >= 4);
var NS3 = (bName == "Netscape" && bVer < 4);
var IE3 = (bName == "Microsoft Internet Explorer" && bVer < 4);
var N6 = (bName == "Netscape" && bVer >= 5);

if (NS4 || IE4 || IE5) {
   if (navigator.appName == "Netscape"){
      layerStyleRef="layer.";
      layerRef="document.layers";
      styleSwitch="";
   }else {
      layerStyleRef="layer.style.";
      layerRef="document.all";
      styleSwitch=".style";
   }
}

function show(dr){
   if (IE4) { 
     eval(layerRef+'["'+dr+'"]'+styleSwitch+'.display="block"');
   }	
   if (N6){
   		document.getElementById([dr]).style.display = "block";
   }
   else{}
}

function hide(dr){
   if (IE4) { 
     eval(layerRef+'["'+dr+'"]'+styleSwitch+'.display="none"');
   }	
   if (N6){
   		document.getElementById([dr]).style.display = "none";
   }
   else{}
}

function popUp(width, height, url, scroll){
	var props = "";
	props += "scrollbars=" + scroll + ",";
	props += "width=" + width + ",";
	props += "height=600,";
	props += "status=0,";
	props += "menubar=0,resizable=1,";
	props += "location=0,";
	props += "toolbar=1,";
	props += "screenX=0,";
	props += "screenY=0,";
	props += "left=0,";
	props += "top=0";
        
	newWindow = window.open (url, "subFormWindow", props);
	newWindow.focus ();
	return false;	
}

function ConfirmDelete (entity_name)
{
	var s = "";
	s += "WARNING\n" +
		 "=================================\n" +
		 "\n" +
		 "Deletions are permanent.  Please confirm your intent\n" +
		 "to delete \"" + entity_name + "\"\n" +
		 "\n";
	
	return confirm (s);
}
		
function SayHey () 
{
	alert ('Hey!!');
	return false;
}

//-->
