function changeColor(src,bgcolor,txtcolor,act){
	if (act==0){ 
		if (!src.contains(event.toElement)){
			src.style.cursor = 'default';
		 	src.style.backgroundColor = bgcolor;
		 	src.style.color = txtcolor;
		}
	}
	else{
		if (!src.contains(event.fromElement)) {
			src.style.cursor = 'hand';
		 	src.style.backgroundColor = bgcolor;
		 	src.style.color = txtcolor;
		}
	 }
}