<!--
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 rememberState(element) {
	elementcheck = $(element);
	if (elementcheck.style.display == '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=/";
}
-->