function ShowTip0()
{
	var tip = document.getElementById("tip");
	if (tip == null) return;
	tip.innerHTML = " Licensed and Approved<br /> by Ontario Ministry<br /> of the Environment";
	tip.style.left = "-15px";
	tip.style.right = "auto";
	tip.style.display = "block";
}

function ShowTip1()
{
	var tip = document.getElementById("tip");
	if (tip == null) return;
	tip.innerHTML = "WE RECYCLE";
	tip.style.left = "auto";
	tip.style.right = "85px";
	tip.style.display = "block";
}


function ShowTip2()
{
	var tip = document.getElementById("tip");
	if (tip == null) return;
	tip.innerHTML = "LEED compliance";
	tip.style.left = "auto";
	tip.style.right = "-15px";
	tip.style.display = "block";
}

function ShowTip3()
{
	var tip = document.getElementById("tip");
	if (tip == null) return;
	tip.innerHTML = "Toronto Construction Association member";
	tip.style.left = "auto";
	tip.style.right = "25px";
	tip.style.display = "block";
}

function HideTip()
{
	var tip = document.getElementById("tip");
	if (tip == null) return;
	tip.style.display = "none";
}