/******************************************
* navcond.js - Condensed version of       *
*              dhtmllib.js and navbar.js. *
* Copyright 2000 by Mike Hall.            *
* Web address: http://www.brainjar.com    *
* Last update: July 17, 2000.             *
******************************************/

/* Used by PLHFO */
function PL_adjustPath(path) {
  if ((path.charAt(0)=='/' || path.charAt(0)=='\\') && window.location.href.substr(0,5)== 'file:') path = 'file:///X|/Data/Sites/JAD%20(New)' + path;
  return path;
}

<!-- hide
function openWin(URL) {
  myWin= window.open(URL, "PopupWin", 
    "width=400,height=580,status=no,resize=yes,toolbar=auto,scrollbars=yes,menubar=no");
}
// -->

function validatePasswords() {
  if (document.regForm.PW1.value != document.regForm.PW2.value) {
    alert("Passwords do not match.");
    document.regForm.PW1.focus();
    document.regForm.PW1.select();
    return false;
  } else 
    return true;
}

	document.write("<scr"+"ipt language='JavaScript' SRC='" + PL_adjustPath("/Pluginlab/Scripts/PLHFO2.js") + "'></scr"+"ipt>");/* PLHFOMenu script */


rollOver = function(moi, fileName) {
	moi.src = 'stock/' + fileName;
}



/******************************************
*                For Menus                *
******************************************/


	<!--//--><![CDATA[//><!--
	startList = function() {
	if (document.all&&document.getElementById) {
	cssdropdownRoot = document.getElementById("cssdropdown");
	for (x=0; x<cssdropdownRoot.childNodes.length; x++) {
	node = cssdropdownRoot.childNodes[x];
	if (node.nodeName=="LI") {
	node.onmouseover=function() {
	this.className+=" over";
	}
	node.onmouseout=function() {
	this.className=this.className.replace(" over", "");
	}
	}
	}
	}
	}
	
	if (window.attachEvent)
	window.attachEvent("onload", startList)
	else
	window.onload=startList;
	
	//--><!]]>
