function gotoLink(strURL) {
	window.location = strURL; 	}

function changeCursor(obj, intValue) {
	obj.style.cursor = 'pointer'; }
	
function hidePromotion()
{
	var imgSection = document.getElementById('divPromotion');
	imgSection.style.visibility = "hidden";
	var imgSection2 = document.getElementById('divClose');
	imgSection2.style.visibility = "hidden";
}

function showPromotion()
{
	var imgSection = document.getElementById('divPromotion');
	imgSection.style.visibility = "visible";
	var imgSection2 = document.getElementById('divClose');
	imgSection2.style.visibility = "visible";
}
	