function linkOvr(ID) {
	divObj = document.getElementById(ID);
	divObj.style.background = "#99CCFF";
	divObj.style.cursor = "pointer";
	divObj.style.cursor = "hand";
}
function linkOut(ID) {
	divObj = document.getElementById(ID);
	divObj.style.background = "none";
	divObj.style.cursor = "default";
}

function navTo(sectionID, sectionName) {
	if ( sectionID == 0 ) {
		window.document.location = "/ufrca/default.asp";
		}
	else if ( sectionID == 999 ) {
		window.document.location = "/ufrca/Admin/default.asp";
		}
	else {
		window.document.location = "/ufrca/stories/default.asp?section_id=" + sectionID + "&name=" + sectionName;
	}
}	

function adjustHeight() {
	if (document.getElementById("footer")) {
		userHeight = document.body.clientHeight - 140 - 160;
	}
	else {
		userHeight = document.body.clientHeight - 170;
	}
	document.all.leftColumn.style.height = userHeight;
	document.all.centerColumn.style.height = userHeight;
	document.all.rightColumn.style.height = userHeight;
}

function editStory(storyID, tableID) {
	window.location.href = "storyEditForm.asp?storyID=" + storyID + "&table=" + tableID;
	}
	
function editBusiness(busID) {
    window.location.href = "businessChange.asp?ID=" + busID;
	}
	
function editSwap(swapID) {
    window.location.href = "swapChange.asp?ID=" + swapID;
	}
	
function editMember(MemberId) {
    window.location.href = "memberAdd.asp?MemberId=" + MemberId;
	}

function storyPopUp(story_id) {
	window.open("stories/storyPopUp.asp?id=" + story_id, "PopUp", "toolbar=0,left=50,top=50,width=350, height=400, scrollbars=1, resizable=1");
}