function findTag(eItem) {
	var objATag = new Object();
	objATag = eItem.all.tags("A").item(0)
	return objATag;
}

function LingOn(eItem){
	findTag(eItem).style.color = "#FF3300";
	eItem.style.cursor = "hand";
}

function LingOff(eItem, eColor){
	findTag(eItem).style.color = eColor;
}

function LingGo(eItem){
	top.location.href= findTag(eItem).getAttribute("HREF");
}