<!--
function menuitemactivate ()
{
var theitem;
theitem = window.event.srcElement;
theitem.style.background='#f1f1f1';
theitem.style.color='#4E79BA';
}


function menuitemdeactivate ()
{
var theitem;
theitem = window.event.srcElement;
theitem.style.background='#f1f1f1';
theitem.style.color='#000000';
}

function GotoUrl(theurl)
{
window.location.href = theurl;
}


function expandIt(BlockName) {
	img = eval('document.img_'+BlockName);
	x=img.src;
			
	if (document.getElementById(BlockName).style.display == "block") {
		document.getElementById(BlockName).style.display = "none";
	if (x.substring(x.length-8,x.length) == "images/arrow.gif") img.src = "images/arrow.gif";
	else  img.src = "images/arrow.gif"
	
	} else {
	document.getElementById(BlockName).style.display = "block";
	if (x.substring(x.length-6,x.length) == "images/arrow_up.gif") img.src = "images/arrow_up.gif";
	else img.src = "images/arrow_up.gif";
	}
}

//onload=Initialize;	


function expandIt2(BlockName) {
	img = eval('document.img_'+BlockName);
	x=img.src;
			
	if (document.getElementById(BlockName).style.display == "block") {
		document.getElementById(BlockName).style.display = "none";
	if (x.substring(x.length-8,x.length) == "images/arrow.gif") img.src = "images/bullet.gif";
	else  img.src = "images/arrow_up.gif"
	
	} else {
	document.getElementById(BlockName).style.display = "block";
	if (x.substring(x.length-6,x.length) == "images/arrow_up.gif") img.src = "images/arrow2_up.gif";
	else img.src = "images/arrow_up.gif";
	}
}

//onload=Initialize;			
//-->



