// <!--
document.oncontextmenu=new Function("return false")

function bustFrames() {
	if (window.location != top.location) {
		top.location.href = window.location;
	}
}
function navOver(src,tab) {
	tabname = "tab" + tab;
	imgsrcO = "./images/tab" + tab + "O.gif";
	src.style.cursor = "hand";
	document[tabname].src = imgsrcO;
}
function navOut(src,tab) {
	tabname = "tab" + tab;
	imgsrc  = "./images/tab" + tab + ".gif";
	src.style.cursor = "default";
	document[tabname].src = imgsrc;
}
function navClick(goUrl) {
	parent.location = goUrl;
}
function btnOver(src) {
	src.style.cursor = 'hand';
	src.bgColor = 'FFFFCC';
	src.style.color = 'CC0000';
}
function btnOut(src) {
	src.style.cursor = 'default';
	src.bgColor = 'DCEAF8';
	src.style.color = '0033FF';
}
function icnOver(icn) {
	icnname = "icn" + icn;
	icnsrc  = "./images/icn" + icn + "O.gif";
	document[icnname].src = icnsrc;
}
function icnOut(icn) {
	icnname = "icn" + icn;
	icnsrc  = "./images/icn" + icn + ".gif";
	document[icnname].src = icnsrc;
}
// -->


