<!-- saved from url=(0014)about:internet -->
function over(id, id1) {
	abc=document.getElementById(id);
	abc.src=id1;
}
function out(id, id1) {
	abc=document.getElementById(id);
	abc.src=id1;
}

function treeDefault() {
	tree=document.getElementById('TREE');
	tree.style.opacity=.5;
	tree.style.filter='alpha(opacity=50)';
}
function treeOver() {
	tree=document.getElementById('TREE');
	tree.style.opacity=1;
	tree.style.filter='alpha(opacity=100)'
}

function setWidth() {
	var screenWidth=screen.width;
	if(screenWidth>=1024) {
		document.getElementById('body').style.width='1000px';
	}
	else {
		document.getElementById('body').style.width='776px';
	}	
}