toggleStyle = function(e,v) {
	var cn = e.className;
	var hpos = cn.indexOf('_',0);
	if( hpos > 0 ) {
		var bc = cn.substring(0,hpos);
	} else {
		var bc = cn;
	}
	if( v ) {
		var nc = bc + "_hov";
		e.className = nc;
		e.style.cursor = "hand";
		e.style.pointer = "hand";
	} else {
		e.className = bc;
		e.style.cursor = "auto";
		e.style.pointer = "auto";
	}
}

goto = function(cUrl) {
	window.location.href = cUrl;
}