function Ajax(){
	var xmlhttp=false;
	try {
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
	} catch (e) {
		try {
		   xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		} catch (E) {
			xmlhttp = false;
  		}
	}
	if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
		xmlhttp = new XMLHttpRequest();
	}
	return xmlhttp;
}
function cambiar_color_over(celda)
	{
		celda.style.backgroundColor="#FFF2BB"
		celda.style.cursor="POINTER";
		celda.style.cursor="HAND"
	}
	function cambiar_color_out(celda){
		celda.style.backgroundColor="#FFFFFF"
	}
