<!--
function pollSubPop (url, name, widgets)
{
        popupWin = window.open(url, name, widgets);
}
//pop up window for the polls

<!--
function openNew(URL) {
aWindow = window.open(URL,"new","width=500,height=400,scrollbars=yes,resizable=yes");
}
function openWin(URL) {
aWindow = window.open(URL,"new","width=450,height=375,scrollbars=yes,resizable=yes");
}
function openWintwo(URL) {
aWindow = window.open(URL,"new","width=415,height=465");
}
function openLin(URL) {
aWindow = window.open(URL,"new","width=450,height=400");
}
function openBan(URL) {
aWindow = window.open(URL,"new","width=400,height=300");
}
//pop up windows for newsletter signup and others

//NEW FUNCTIONS

function BGH_goTo( url ) {
	window.location.href = url;
}

function BGH_navBar( tableCellRef, hoverFlag, navStyle ) {
	if ( hoverFlag ) {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#98947C';
				break;
			default:
//				tableCellRef.style.backgroundColor = '#ccc';
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#c00';
				}
		}
	} else {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#807C64';
				break;
			default:
//				tableCellRef.style.backgroundColor = '#ddd';
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#000';
				}
		}
	}
}

function BGH_navBarClick( tableCellRef, navStyle, url ) {
	BGH_navBar( tableCellRef, 0, navStyle );
	BGH_goTo( url );
}

