function change_image(oForm)
{
	document.images['logo_img'].src = oForm.logo_list.value;
}
function menuover(oitem)
{
	oitem.style.color='#FFFFFF';
}

function menuout(oitem)
{
	oitem.style.color='#000066';
}
//Protect and Trap are for detecting right mouse click
function protect(e)
{
	var whichbtn
	if (navigator.appName == "Netscape")
		{ whichbtn = e.which	}
	else if (navigator.appName.indexOf("Microsoft" != -1))
		{ whichbtn = window.event.button }
	if (whichbtn != "1")
		{
			alert("I'm sorry but that function is not available")
			return false;
		}
	else
		{ return true; }
}

function trap()
{
	if(document.images)
	for(i=0;i<document.images.length;i++)
	document.images[i].onmousedown = protect;
}

function leapto(form,item)
{
	top.location.href = form.combo[item].options[form.combo[item].selectedIndex].value + ".html"
	form.reset(form)
}
function outliner()
	{
		var child = document.all[event.srcElement.getAttribute("child", false)];
		var pic = "pic" + child.id.substring(5,4)
		
		if (null != child)
			{child.className = child.className == "collapsed" ? "expanded" : "collapsed";}
		
		if (document.images[pic].pictype == 'p')
		{
			document.images[pic].src = 'image/minus.gif';
			document.images[pic].pictype = 'm';
		}
		else
		{
			document.images[pic].src = 'image/plus.gif';
			document.images[pic].pictype = 'p';
		}
	}

