// JavaScript Document
function swapTab(obj, divider) {
 resetContent()
 var image = new Image();
 image.src = divider;
 document.getElementById(obj).style.display = 'inline';
 document.getElementById('newsDiv').src = image.src
}
//Custom rollover function. Pass object id and path to image.
function jsRollOver(id, img) {
	var image = new Image();
	image.src = img;
	document.getElementById(id).src = image.src
}
function jumpToAnchor(anchorName){
	document.location.hash = anchorName;
}
function createPopUp(page, title, width, height) {
	window.open(page, title, 'width=' + width + ',height=' + height + ',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0'); 
}