<!-- Hide


function setFocus() {
	document.forms[0].searchCriteria.focus()
	}

/* search form js */


function sformCheck() 
{
        if (document.searchForm.searchCriteria.value == "") 
        {
        alert("Please enter a word or phrase.");
        return false;
        }
}


function submitSearch() {
        if (document.searchForm.searchCriteria.value == "") 
        { alert("Please enter a word or phrase.");
        return false;
        } else { window.document.searchForm.submit();}
}

function searchBibliography(){
var searchWindow= null  
	searchWindow= window.open("search/references.aspx","bsWindow","menubar=no,status=yes,scrollbars=yes,resizable=yes,width=795,height=600");
	document.frmBibliographySearch.target = 'bsWindow';
    document.frmBibliographySearch.submit();
    searchWindow.focus();	
}

function passSearchTerm() {
    bsWindow.document.forms[0].txtSearchTerm.value = document.frmBibliographySearch.searchCriteria.value;
    bsWindow.focus();
   }    


/* end of search form js */ 

var winOne= null
function openLookup(url,win){
winOne= window.open(url,win,"menubar=no,status=yes,scrollbars=yes,resizable=no,width=640,height=480");
winOne.focus();
}

var winTwo= null
function openAlert(url,win){
winTwo= window.open(url,win,"menubar=no,scrollbars=yes,resizable=no,width=640,height=480");
winTwo.focus();
}

function warning() {
alert('Please remember!\nDO NOT use your browsers toolbar BACK and FORWARD buttons to navigate thru the forms.  Use the Blue navigation bar on the form.')
}


// -->
