function CreateLink(oObject, sURL){
	oObject.onclick = function () {
		document.location.href = sURL;
	}
	oObject.onmousover = function () {
		oObject.style.cursor = 'hand';
	}
	oObject.onmousemove = function () {
		oObject.style.cursor = 'hand';
	}
	oObject.onmouseout = function () {
		oObject.style.cursor = '';
	}
	return true;
}

function ConfirmAction(sMessage){
	var bConfirmed = false
	if(confirm(sMessage)){
		bConfirmed = true
	}
	return bConfirmed;
}
