function blockError(){return true;}
window.onerror = blockError;
function noRightClick()
{
	if (event.button==2)
	{
		alert('You may not right mouse click this page.');
	}
}

document.onmousedown=noRightClick

function showaddress()
{
	document.write('<a href="/go/" target="_top" title="the Illinois Catholic Health Association homepage">Illinois Catholic Health Association</a> 65 E Wacker Pl, Ste 1620, Chicago, IL');
}

function showaddressblock()
{
	document.write('65 E Wacker Pl, Ste 1620<br />');
	document.write('Chicago, IL 60601');
}

function showcopyright()
{
	var today = new Date();
	var theyear = today.getFullYear();
	document.write('Copyright &copy;' + theyear + '&nbsp;');
	document.write('<a href="/go/" target="_top" title="the Illinois Catholic Health Association homepage">Illinois Catholic Health Association</a>.&nbsp;');
	document.write('All Rights Reserved.');
}

function showcredits()
{
	document.write('Website designed & marketed by <a href="http://www.baecore.com/" target="_blank" title="Baecore Group website">Baecore Group</a>.');
}

function showemail()
{
    document.write('<a href="m'+'ai'+'lt'+'o:as'+'si'+'st'+'an'+'ce'+'@il'+'-ch'+'a.o'+'rg&subject=Website contact" title="Email the ICHA (will open your mail client)">as'+'si'+'st'+'an'+'ce'+'@il'+'-ch'+'a.o'+'rg</a>');
//    document.write('as'+'si'+'st'+'an'+'ce'+'@il'+'-ch'+'a.o'+'rg');
}

function showemailmax()
{
    document.write('mj'+'oa'+'ch'+'im'+'@i'+'l-'+'ch'+'a.'+'or'+'g');
}

function showphone()
{
    document.write('31'+'2-'+'36'+'8-'+'00'+'11');
}

function showfax()
{
    document.write('31'+'2-'+'36'+'8-'+'17'+'01');
}

var lorem=["Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "Phasellus sed magna aliquam nibh molestie tristique.", "Aliquam non quam a elit."];
function filltext(words)
{
    for (var i=0; i<words; i++)
    {
	    document.write(lorem[Math.floor(Math.random()*3)]+' ');
    }
}
