function lnavselect(navName,linkName) {
	if (document.getElementById) {
    	document.getElementById(navName).style.backgroundColor = "#7c98b2";
    	document.getElementById(linkName).style.backgroundImage = "url(images/lnav_on.gif)";
	}
}

function lnav2select(navName) {
	if (document.getElementById) {
    	document.getElementById(navName).style.backgroundColor = "#9bb5cd";
	}
}

function interstitial() {
	var newwin;
	newwin = window.open('exit.html','RemoteSite','width=600,height=400,screenX=200,screenY=200,top=200,left=200,resizable=yes,toolbar=yes,scrollbars=yes,location=yes,status=yes,menubar=yes')
	newwin.focus();
}

function resizeIt(url)  {
	document.location.href = url;
	if (document.layers) {
		window.outerWidth = 800;
		window.outerHeight = 580;
	}
	else {
		window.resizeTo(800,580);
	}
}