/*-------------------------------------------------------------------------------------------------------*/
var NS  = (document.layers) ? true : false;
var IE  = (document.all) ? true : false;
var DOM = (document.getElementById) ? true : false;
var Win = ((navigator.userAgent.indexOf('Windows') != -1) && 
  (navigator.userAgent.indexOf('Windows 3') == -1)) ? true : false;
/*-------------------------------------------------------------------------------------------------------*/
function hideLinkFocus() {  
	if (document.all) {for (i = 0; i < document.links.length; i++) {document.links[i].hideFocus = true;}}
}
/*-------------------------------------------------------------------------------------------------------*/
function rowOver(object, thisStatus) {
	window.status = thisStatus;
  if (object.className == 'clsNavRow') object.className = 'clsNavRowOver';
}
/*-------------------------------------------------------------------------------------------------------*/
function rowOut(object) {
	window.status = '';
  if (object.className == 'clsNavRowOver') object.className = 'clsNavRow';
}
/*-------------------------------------------------------------------------------------------------------*/
function rowRefOver(object, thisStatus) {
	window.status = thisStatus;
  if (object.className == 'clsRefCell') object.className = 'clsRefCellOver';
}
/*-------------------------------------------------------------------------------------------------------*/
function rowRefOut(object) {
	window.status = '';
  if (object.className == 'clsRefCellOver') object.className = 'clsRefCell';
}
/*-------------------------------------------------------------------------------------------------------*/
function rowClick(thisHref) {document.location.href = thisHref;}
/*-------------------------------------------------------------------------------------------------------*/
var objCount = 1;
var arrImg = new Array();
/*-------------------------------------------------------------------------------------------------------*/
function preload(thisImage) {  
	arrImg[objCount] = new Image();
	arrImg[objCount].src = thisImage;
	objCount++;
}
/*-------------------------------------------------------------------------------------------------------*/
function swapImg(thisImage) {document.images['myProjImg'].src = thisImage;}
/*-------------------------------------------------------------------------------------------------------*/

