function makeLink(element,aElement,event) {
	var hyperlink = aElement.href;
		
	element.style.cursor = 'hand';
	element.onclick = function () {
		document.location.href = hyperlink;
	}
	if (event == 'hover') {
		window.status = hyperlink;
		aElement.style.textDecoration = 'underline';
	}
	else {
		window.status = '';
		aElement.style.textDecoration = 'none';
	}
}

