function swapDiv(to){	//alert(document.getElementById('localHeader').style.className);	content2 = '<ul><li><a href="#">PSC religious heritage event to feature Obama pastor</a></li><li><a href="#">New and different approaches to General Conference expected</a></li><li><a href="#">Steele earns BMCR endorsement</a></li><li><a href="#">Episcopal candidates gatther in Dallas</a></li><li class="last"><a href="#">Pastoral leadership and church growth efforts earn kuds</a></li></ul><p><a href="#">More News</a></p>';	content1 = '<ul><li><a href="#">Global Link 1</a></li><li><a href="#">Global Link 2</a></li><li><a href="#">Global Link 3</a></li><li><a href="#">Global Link 4</a></li><li class="last"><a href="#">Global Link 4</a></li></ul><p><a href="#">More Global News</a></p>';	if (to == 1){		tar1 = document.getElementById('localHeader');		tar2 = document.getElementById('globalHeader');		if (tar1.className == 'active'){			tar1.className = 'last';		}		if (tar2.className != 'active'){			tar2.className = 'active';		}		document.getElementById('localNews').style.display = 'none';		document.getElementById('globalNews').style.display = 'block';	}	if (to == 2){		tar1 = document.getElementById('localHeader');		tar2 = document.getElementById('globalHeader');		if (tar1.className != 'active'){			tar1.className = 'active';		}		if (tar2.className == 'active'){			tar2.className = 'last';		}		document.getElementById('localNews').style.display = 'block';		document.getElementById('globalNews').style.display = 'none';	}}function changeFontSize(inc){  p = document.getElementsByTagName('p');  for(n=0; n<p.length; n++) {    if(p[n].style.fontSize) {       size = parseInt(p[n].style.fontSize.replace("px", ""));    } else {       size = 12;    }    if (p[n].className != 'f-left'){		p[n].style.fontSize = size+inc + 'px';	}   }}function emailPage(tar){	if (tar){		nw = window.open("z_includes/emailpage.php?pn="+tar,"emailpage", "status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=1,scrollbars=1,width=400,height=500");	}}