<!-- 

// Menu Mouse Hover Styles:
	function MenuMouseOver(thisMenuRow) {
		document.getElementById(thisMenuRow).style.borderBottomColor = '#f7b32b';
	}
	function MenuMouseOut(thisMenuRow) {
		document.getElementById(thisMenuRow).style.borderBottomColor = '#ffffff';
	}

function emailThis(articleURL) {
		window.open(articleURL,'','width=500,Height=415,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no');
	}

function popThis(articleURL) {
		window.open(articleURL,'','width=500,Height=415,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no');
	}

function toggleArticle() {
	if ( document.getElementById('rm').style.display == "none" ) {
		document.getElementById('rm').style.display = "block";
		document.getElementById('up').style.display = "none";
		document.getElementById('article').style.height = "700px";
	}
	else {
		document.getElementById('up').style.display = "block";
		document.getElementById('rm').style.display = "none";
		document.getElementById('article').style.height = "100%";
	}
}

-->