function FlipThis(objImage, objNewImage, sWindowStatus) { //highlight menu 

	if (document.images){
	
		objImage.src = objNewImage.src;
		window.status = sWindowStatus;
		
	}
	
	return true;
	
}

function FlipStatus(sWindowStatus) { //highlight menu 

	window.status = sWindowStatus;
	return true;
	
}

function FlipLink(objHref, sDecoration) { //highlight menu 

	objHref.style.textDecoration = sDecoration;
	
}

function FlipTabs(objImage, objNewImage, sWindowStatus) { //highlight menu 

	if (document.images){
	
		objImage.src = objNewImage.src;
		objImage.alt = objNewImage.alt;
		window.status = sWindowStatus;
		
	}
	
	return true;
	
}

if (document.images) {

	var aryToolbarBack = new Array();
	aryToolbarBack[0] = new Image();
	aryToolbarBack[1] = new Image();
	aryToolbarBack[0].src = sButtonPath + 'back.gif';
	aryToolbarBack[1].src = sButtonPath + 'back_over.gif';
	
	var aryToolbarList = new Array();
	aryToolbarList[0] = new Image();
	aryToolbarList[1] = new Image();
	aryToolbarList[0].src = sButtonPath + 'list.gif';
	aryToolbarList[1].src = sButtonPath + 'list_over.gif';
	
	var aryToolbarRefresh = new Array();
	aryToolbarRefresh[0] = new Image();
	aryToolbarRefresh[1] = new Image();
	aryToolbarRefresh[0].src = sButtonPath + 'refresh.gif';
	aryToolbarRefresh[1].src = sButtonPath + 'refresh_over.gif';
	
	var aryToolbarPrint = new Array();
	aryToolbarPrint[0] = new Image();
	aryToolbarPrint[1] = new Image();
	aryToolbarPrint[0].src = sButtonPath + 'print.gif';
	aryToolbarPrint[1].src = sButtonPath + 'print_over.gif';
	
	var aryToolbarTop = new Array();
	aryToolbarTop[0] = new Image();
	aryToolbarTop[1] = new Image();
	aryToolbarTop[0].src = sButtonPath + 'top.gif';
	aryToolbarTop[1].src = sButtonPath + 'top_over.gif';
	
	var aryToolbarClose = new Array();
	aryToolbarClose[0] = new Image();
	aryToolbarClose[1] = new Image();
	aryToolbarClose[0].src = sButtonPath + 'close.gif';
	aryToolbarClose[1].src = sButtonPath + 'close_over.gif';
	
	var aryFolder = new Array();
	aryFolder[0] = new Image();
	aryFolder[1] = new Image();
	aryFolder[0].src = sButtonPath + 'icon_folder_closed.gif';
	aryFolder[1].src = sButtonPath + 'icon_folder_opened.gif';
	
}