	var oLastBtn=0;
	function RaiseButton(){
		// window.event.cancelBubble=true;
		if (typeof window.event != 'undefined')
		window.event.cancelBubble = true;
		oBtn = window.event.srcElement;
		var bChosen = false;
		if(oLastBtn && oLastBtn != oBtn){
			HideButton();
		}
		if(oBtn.buttonType){
			oBtn.className = oBtn.buttonType + "Up";
			oLastBtn=oBtn;
			}
		else {
		oLastBtn = 0;
		}
	}
	function DepressButton(){
		// window.event.cancelBubble=true;
		if (typeof window.event != 'undefined')
		window.event.cancelBubble = true;
		oBtn = window.event.srcElement;
		if(oBtn.buttonType){
			oBtn.className = oBtn.buttonType + "Down"; 
		}
	}
	function HideButton(){
		if ((oLastBtn.buttonType == "LeftNavChosen") || (oLastBtn.buttonType == "LeftNavSubChosen")) {
			oLastBtn.className = oLastBtn.buttonType;
		}
		else {
		oLastBtn.className = oLastBtn.buttonType + "Off";
		}
	}
	function textRoll(strTextColor)
  {
		window.event.srcElement.style.color = strTextColor;
		window.event.cancelBubble = true;
	}

	function textCounter(field, countfield, maxlimit) {
		if (field.value.length > maxlimit) // if too long...trim it!
		field.value = field.value.substring(0, maxlimit);
		// otherwise, update 'characters left' counter
		else 
		countfield.value = maxlimit - field.value.length;
	}
	
	
function openPrintWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}



// Legacy Window Open

function openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

// New Window Open


// Open Help Window
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


// New Window No Options
var popUpWinNoOpt=0;

function popUpWindowNoOpt(URLStr, left, top, width, height)

{

  if(popUpWinNoOpt)

  {

    if(!popUpWinNoOpt.closed) popUpWinNoOpt.close();

  }

  popUpWinNoOpt = open(URLStr, 'popUpWinNoOpt', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');

}


// New Window Options
var popUpWin=0;

function popUpWindowNoOpt(URLStr, left, top, width, height)

{

  if(popUpWin)

  {

    if(!popUpWin.closed) popUpWin.close();

  }

  popUpWin = open(URLStr, 'popUpWin', 'toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');

}




function confirmSubmit()
{
var agree=confirm("Are you sure you want to delete?");
if (agree)
	return true ;
else
	return false ;
}


// delete alerts
function confirmDelete() 
{  
var agree=confirm("Are you sure you want to delete?"); 
if (agree) { 
document.deletefile.submit(); 
}

}

function confirmUserDelete() 
{  
var agree=confirm("Are you sure you want to delete this user?"); 
if (agree) { 
document.deleteuser.submit(); 
}

}
function confirmSendMsg() 
{  
var agree=confirm("Are you sure you want to broadcast this message to the entire list?"); 
if (agree) { 
document.deleteuser.submit(); 
}

}

function confirmPhotoGroupDelete() 
{  
var agree=confirm("Are you sure you want to delete group and any files associated with it?"); 
if (agree) { 
document.deletefile.submit(); 
}

}

function confirmPublishXML() 
{  
var agree=confirm("Are you sure you want to publish Tips Listings to XML?  This will overwrite current RSS Feed."); 
if (agree) { 
document.deletefile.submit(); 
}

}


<!--START HANDLING NEW MENU ITEMS FOR IE-->

/*startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("mizMainNav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;*/





<!-- START: Little Sub Menu Scripts: IE CSS handling-->



<!-- END: Little Sub Menu Scripts: IE CSS handling-->