/* Change Background color and Text color of hovered pictures */

function onMoverHoverPic(curID) {
	var curElement = document.getElementById(curID);
	curElement.style.backgroundColor = "#D6E7FF";
	curElement.style.backgroundColor = "#5BF";
	curElement.style.backgroundColor = "#4AF";
	curElement.style.backgroundColor = "#6CF";
	curElement.style.backgroundColor = "#ccc";
	curElement.style.color = "#010";	
}

function onMoutHoverPic(curID) {
	var curElement = document.getElementById(curID);
	curElement.style.backgroundColor = "#FFFFF0";
	curElement.style.color = "#000";	
}

function equipWin(linkTarget) {
	var target="equipWin/" + linkTarget + ".htm"
	lgPicWin = window.open(target, linkTarget, 
	"toolbar=no, menubar=yes, location=no, scrollbars=yes, resizable=yes, width=620, height=520");
	lgPicWin.focus();
}
