// JavaScript Document
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 consulta_Proyecto(id_p,id_c){
	if ( FlagAparecer == 1 ) {
		FlagAparecer = 0;
		clearTimeout( timeAparecer );
	}
	if ( FlagDesaparecer == 1 ) {
		FlagDesaparecer = 0;
		clearTimeout( timeDesaparecer );
	}
	
	var contenedor,ap;
	contenedor = document.getElementById('cont');
	ajax=nuevoAjax();
	ajax.open("POST","portafolio_indiga/proyectosIndiga.php",true);
	ajax.onreadystatechange=function() {
		if (ajax.readyState==4) {
			contenedor.innerHTML = ajax.responseText;
		}
		else{
			contenedor.innerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="155" height="170" title="cargando"><param name="movie" value="portafolio_indiga/img/no/cargando.swf" /><param name="quality" value="high" /><embed src="portafolio_indiga/img/no/cargando.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="155" height="170"></embed></object>';
		}
	}
	ajax.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
	ajax.send("id_cat="+id_c+'&id_proy='+id_p);
}

function CambioPantalla(i,t){
	for(x=1;x<=t;x++){
		document.getElementById('pantallaNo'+x).style.display='none';
		}		
	document.getElementById('pantallaNo'+i).style.display='block';	
}

function CambioPestana(i){
		document.getElementById('pestana').innerHTML=pest[i];
		document.getElementById('contenido').innerHTML=cont[i];
}

