<!--
function openWindow1(filename,wide,high) {
  popupWin = window.open(filename, 'remote', 'scrollbars,resizable,width='+wide+',height='+high+'')
  popupWin.focus();
}
function openImage(filename,wide,high) {
  popupWin = window.open(filename, 'remote', 'scrollbars=NO,resizable=YES,width='+wide+',height='+high+'')
  popupWin.focus();
}
function openWin(link,title,props) { window.open(link,title,props); }

function goNow(page) {
	window.location=page;
}
function menuHighlight(menu){
	menu.style.backgroundColor='#D38181';
}
function menuUnHighlight(menu){
	menu.style.backgroundColor='#421717';
}
function menuHighlight2(menu){
	menu.style.backgroundColor='#F7F6E2';
}
function menuUnHighlight2(menu){
	menu.style.backgroundColor='#D7D6C2';
}
function menuHighlight3(menu,color){
	menu.style.backgroundColor=color;
}
function rememberState(element) {
	var elementcheck = $("#"+element).css("display");
	if (elementcheck == 'none') {
		var cookieValue = 'yes';
	} else {
		var cookieValue = 'no';
	}
	var today = new Date();
	var expire = new Date();
	expire.setTime(today.getTime() + 3600000*24*30);
	document.cookie = element+"="+escape(cookieValue)+";expires="+expire.toGMTString()+";path=/";
}
-->