
function showALT(img, msg, url, t, l) {
	tt = t + 320;
	ll = l + 50;
	document.getElementById("info").innerHTML = "<div style=\"margin: 4px;\"><a href=\""+url+"\" style=\"text-decoration: none; color: 000000;\"><img width=110 border=0 src=\"" + img + "\"><br>" + msg + "</a></div>";
	document.getElementById("info").style.display = "block";
	document.getElementById("info").style.top = tt + "px";
	document.getElementById("info").style.left = ll + "px";

}

function showSubMenu(id) {
	d = document.getElementById(id).style.display;
	if (d == "block")
		document.getElementById(id).style.display = "none";
	else
		document.getElementById(id).style.display = "block";

}

function hideALT() {
	document.getElementById("info").style.display = "none";
}
