
function movr(src,clrOver,clrbr1){ if (!src.contains(event.fromElement)) {	src.bgColor = clrOver; src.style.border=clrbr1}}
function mout(src,clrIn,clrbr2) { if (!src.contains(event.toElement)) { src.style.cursor = 'default'; src.bgColor = clrIn; src.style.border=clrbr2}}

function flier(pageurl, winname, attr) {
		window.open(pageurl, winname, attr + ", menubar=no, copyhistory=no, toolbar=no, status=no, scrollbars=no, resizable=no");
}

function flier2(pageurl, winname, attr) {
		window.open(pageurl, winname, attr + ", menubar=no, copyhistory=no, toolbar=no, status=no, scrollbars=YES, resizable=NO");
}

function ToggleDisplay(oItem,hItem)	{
	if ((oItem.style.display == "") || (oItem.style.display == "none"))	{
		oItem.style.display = "block";
		hItem.style.display = "none";
	}	else {
		oItem.style.display = "none";
		hItem.style.display = "block";
	}
}

function ToggleDisplayb(oButton, oItems)	{		
	if ((oItems.style.display == "") || (oItems.style.display == "none"))	{
		oItems.style.display = "block";
		oButton.src = "/img/icn_minus.gif";
	}	else {
		oItems.style.display = "none";
		oButton.src = "/img/icn_plus.gif";
	}
	return false;
}

function ToggleDisplayc(oItem)	{
	if ((oItem.style.display == "") || (oItem.style.display == "none"))	{
		oItem.style.display = "block";
	}	else {
		oItem.style.display = "none";
	}
}

function ToggleDiable(oItem)	{
		oItem.style.display = "none";
}

function ToggleDisplayd(oItem,hItem,tItem) {
	hItem.style.display = "none";
	tItem.style.display = "none";
	oItem.style.display = "block";
}

function ToggleDisplayf(oItem,hItem,tItem) {
	hItem.style.display = "none";
	oItem.style.display = "block";
}

function ToggleDisplaye(oItems, t) {
	if (t == 1)  {
		oItems.style.display = "block";
	} else {
		oItems.style.display = "none";
	}
}

function changeImage(img)	{
	element = event.srcElement;
	element.style.backgroundImage = "url(" + img + ")";
}

