// JavaScript Document

function showDiv(divName) {
	divObj = document.getElementById(divName);
	divObj.style.display = "block";
	divObj.style.visibility = "visible";
}

function hideDiv(divName) {
	divObj = document.getElementById(divName);
	divObj.style.display = "none";
	divObj.style.visibility = "hidden";
}

function offSite(nextURL) {
    var popThis = 'leaving_site.html?url=' + nextURL;
    window.open(popThis,'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=503,height=352');
}

