// Common JavaScript Functions
//
// Script created by Eric Faust
// Copyright (c) 2002
// EricFaust@FunForAllSoftware.com

/////////////////////
//Do not hyperlink
function dontLink() {
	return false;
}

/////////////////////
// Select a Radio Option
function selectOptionButton(id) {
    document.getElementById(id).checked = true;
}
