/* void */ function logout() {
	if (confirm('You are about to log out. Click OK to confirm.')) { document.location.href='../logout.asp?validate=1' }
}

/* void */ function openWindow(theURL, Width, Height) {
	window.open(theURL, "popup", "status=yes,scrollbars=yes,width=" + Width + ",height=" + Height);
}

var showTime;

/* void */ function show(oDiv) {
	clearTimeout(showTime);
	var elm = eval("document.all." + oDiv);
	elm.style.visibility="visible";
}

/* void */ function hide(oDiv) {
	showTime = setTimeout(oDiv + '.style.visibility="hidden"',600);
}

/* void */ function clearField(oElement, sText1, sText2) {
	if (oElement.value == sText1 || oElement.value == sText2)
		oElement.value = "";
}

/* void */ function moover(el) {
	el.src = el.src.replace("_0", "_1").replace("_2", "_1");
}

/* void */ function moout(el) {
	el.src = el.src.replace("_1", "_0").replace("_2", "_0");
}

/* void */ function modown(el) {
	el.src = el.src.replace("_0", "_2").replace("_1", "_2");
}

window.onload = jumptoanchor;

function jumptoanchor() {
	var RegExp = /#(\w.+)/;
	if (window.location.href.match(RegExp)) {
		//window.location.hash = window.location.href.match(/#(\w.+)/)[1];
		window.location.hash = RegExp.$1;
	}
}