
function jslink(id,link)
{
	var elem = document.getElementById(id);

	elem.onclick = function () {
		location.href = link;
	};
}

