<!--
var highlitcolor = '#F2FEFB';
var ns6 = document.getElementById && !document.all;
var previous = '';
var eventobj;
var intended = /INPUT|TEXTAREA|SELECT|OPTION/;
function checkel(which) {
	if (which.style && intended.test(which.tagName)) {
		if (ns6 && (eventobj.nodeType == 3)) {
			eventobj = eventobj.parentNode.parentNode;
		}
		return true;
	}
	else {
		return false;
	}
}
function highlit(e) {
	eventobj = ns6 ? e.target : event.srcElement;
	if (previous != '') {
		if (checkel(previous)) {
			previous.style.backgroundColor = '#EAFBF7';
		}
		if (checkel(eventobj)) {
			eventobj.style.backgroundColor = highlitcolor;
		}
	}
	else {
		if (checkel(eventobj)) {
			eventobj.style.backgroundColor = highlitcolor;
		}
	}
	previous = eventobj;
}
function selp(url, name, size) {
	var features = 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, left=0, top=0, screenX=0, screenY=0,';
	features += size;
	popwin = window.open(url, name, features);
	if (popwin.opener == null) {
		popwin.opener = self;
	}
}
//-->

