/*******************************************************************************
Javasript Digitalseed  - js/main.js
Created by DigitalSeed 2010
File contents: Aplication javascript functions
*******************************************************************************/
/*****************************************************************************
Funció: Ajax
*****************************************************************************/
function nuevoAjax(){
	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 mostrarLinks(x)
{
	document.getElementById("div_links_"+x).style.display='block';
}

function ocultarLinks(x)
{
	document.getElementById("div_links_"+x).style.display='none';
}



