/*
Title:			
Filename:		viper.js
Purpose:		
Date Started:	10/20/2003
Copyright:		Safety Research Corporation of America, Department of Army: INSCOM
Author:			
Remarks:		
		
Revisions:		12/31/2003 - David W. Bryant - Added Comments header and added code
			to cover mouse over effects in the admin pages.
*/

// Code for dynamic navigation menu

function VIPER_goTo( url ) {
	window.location.href = url;
}

function VIPER_navBar( tableCellRef, hoverFlag ) {
	if ( hoverFlag ) {
		tableCellRef.style.backgroundColor = '#858E9B';
	} else {
		tableCellRef.style.backgroundColor = '#273C4D';
	}
}

function VIPER_navBarAdmin( tableCellRef, hoverFlag ) {
	if ( hoverFlag ) {
		tableCellRef.style.backgroundColor = '#858E9B';
	} else {
		tableCellRef.style.backgroundColor = '#681A1A';
	}
}


function VIPER_navBarClick( tableCellRef, url ) {
	VIPER_navBar( tableCellRef, 0);
	VIPER_goTo( url );
}

function VIPER_navBarClickAdmin( tableCellRef, url ) {
	VIPER_navBarAdmin( tableCellRef, 0);
	VIPER_goTo( url );
}

// end
