//<!***************************************************************************>	
// make sure this site isn't in someone else's frames
if (top != self)
top.location.href = location.href;


//<!***************************************************************************>
// for opening new window - shouldn't need this; fix links page..
function openWin(URL){
    aWindow=window.open(URL, "thewindow");
    }

//<!***************************************************************************>
// for changing languages from the selectable list
function changeLanguage(origin){
document.location = 
	document.abcd.language.options[document.abcd.language.selectedIndex].value;
	document.abcd.language.selectedIndex = origin;	
}

//<!***************************************************************************>
// scrapbook password
function enterScrapbook() {
window.open('scrapbook/index.html', 'xxx', 'width=350,height=275,resizable=1');
}

