function entrar(src,color_entrada) {
	src.bgColor=color_entrada;
	src.style.cursor="hand";
}
function sortir(src,color_default) {
	src.bgColor=color_default;
	src.style.cursor="default";
}
//abrir ventana
function viewer(url,ancho,alto){
   	window.open(url,"ventana2","width="+ancho+",height="+alto+",scrollbars=YES,status=YES");	
}