// Main article navigation

function overm(celname){ 
	var chgcell
	if (document.layers) { // browser is NN
		chgcell = "window.document."+ celname + ".bgColor='#6699CC'";
	}
	else //assume IE
	{
		chgcell = "document.getElementById('"+ celname + "').bgColor='#6699CC'";
	}
 	eval(chgcell);
}

function outm(celname){
	var chgcell
	if (document.layers) { // browser is NN
		chgcell = "window.document."+ celname + ".bgColor='#CDDBE5'";
	}
	else //assume IE
	{
		chgcell = "document.getElementById('"+ celname + "').bgColor='#CDDBE5'";
	}
	eval(chgcell);
}

function openFullTable(strURL) {
	window.open(strURL,'CapitalReview','width=800,height=800,directories=no,toolbars=no,status=no,scrollbars=yes,resizable=yes');
}

function openWAdv(strURL) {
	window.open(strURL,'CapitalReview','width=397,height=430,directories=no,toolbars=no,status=no,scrollbars=no,resizable=no');
}