var e = '@';
var mt = 'o:';
var ml = 'ma'+'il'+'t'+mt;
function cellclick(url)	
{
	window.location.href=url;
}
function cursor(obj, mode) {
	//verify for netscape/mozilla
	var isNS4 = (navigator.appName=="Netscape")?1:0;
	if (!isNS4) {
		if (mode == 1) obj.style.cursor='hand';
		else obj.style.cursor='default';
	} else {
		if (mode == 1) obj.style.cursor='pointer';
		else obj.style.cursor='default';
	}
}