var NS4 = (document.layers) ? 1 : 0;
var IE = (document.all) ? 1 : 0;
var DOM = 0; 


if (parseInt(navigator.appVersion) >=5) {DOM=1;}
function openWin(url) {
  if ((!NS4) && (!IE) && (!DOM)) {
  	alert('This Application requires version 4 or higher of\nInternet Explorer or Netscape Navigator');
	return;
  }
  Quote = window.open(url, '/orgheaders/198/win_quote',  'menubar=0,toolbar=0,location=0,directories=0,status=0,scrollbars=0,resizable=0,width=300,height=400,left=50,top=50')
}

<!--

function WM_imageSwap(daImage, daSrc){
  var objStr,obj;
  /*    Source: Webmonkey Code Library (http://www.hotwired.com/webmonkey/javascript/code_library/) Author: Shvatz    */

  // Check to make sure that images are supported in the DOM.
  if(document.images){
    // Check to see whether you are using a name, number, or object
    if (typeof(daImage) == 'string') {
      // This whole objStr nonsense is here solely to gain compatability
      // with ie3 for the mac.
      objStr = 'document.' + daImage;
      obj = eval(objStr);
      obj.src = daSrc;
    } else if ((typeof(daImage) == 'object') && daImage && daImage.src) {
      daImage.src = daSrc;
    }
  }
}

function changeImages() {
if (document.images) {
for (var i=0; i<changeImages.arguments.length; i+=2) {
document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
}
}
}

function setQuote() {
  theQuotes = new Array("trustworthy","loyal","helpful","friendly","courteous","kind","obedient","cheerful","thrifty","brave","clean","reverent");
  var whichQuote = Math.round(Math.random()*1000) % 12;
  newQuote = theQuotes[whichQuote];
  document.write(newQuote);
}

function toggle(e) 
{  
if (e.style.display == "none") 
	{
	e.style.display = "";
	 } 
else 
	{     
	e.style.display = "none";  
	}
}

function AW_BustFrames() {
	if (self.parent.frames.length!=0)
	{
		self.parent.location.replace(document.location.href);
	}
}
// -->

	

