function mOver(obj,bCol,tCol,text) {
	obj.style.backgroundColor = bCol;
	obj.style.color = tCol;
	window.status = text;
	obj.style.cursor = 'pointer';
}
function mOut(obj,bCol,tCol) {
	obj.style.backgroundColor = bCol;
	obj.style.color = tCol;
	window.status = '';
	obj.style.cursor = 'auto';
}
function sGoto(page) {
	window.location.href = page;
}
function evPop(url) {
	window.open(url,'Events','width=600,height=700,toolbar=no,scrollbars=no');
	event.returnValue = false;
}
function conOver(obj) {
	window.status = 'GLS Charity Concert Details';
	obj.style.cursor = 'pointer';
}
function conOut(obj) {
	window.status = '';
	obj.style.cursor = 'auto';
}
