// JavaScript Document
function contentload(b) {
var url=b;
// debugging: alert(b);
		new Ajax(url, {
			method: 'get',
			update: $('info')
		}).request();
};
									 
function contentchange(a) {
	
if(a=="inicio")
	{ 
	document.foot_image.src="images/left_side_home.jpg";
	document.top_image.src="images/title_inicio.gif";
	contentload("inicio.html");
	};

if(a=="home")
	{ 
	document.foot_image.src="images/left_side_home.jpg";
	document.top_image.src="images/title_home.gif";
	contentload("home.html");
	};
	
if(a=="ciencia")
	{ 
	document.foot_image.src="images/left_side_ciencia.jpg";
	document.top_image.src="images/title_ciencia-y-desarrollo.gif";
	contentload("ciencia-y-desarrollo.html");
	};

if(a=="science")
	{ 
	document.foot_image.src="images/left_side_ciencia.jpg";
	document.top_image.src="images/title_science-and-development.gif";
	contentload("science-and-development.html");
	};
	
if(a=="quienes")
	{ 
	document.foot_image.src="images/left_side_ciencia.jpg";
	document.top_image.src="images/title_quienes-somos.gif";
	contentload("quienes-somos.html");
	};

if(a=="who")
	{ 
	document.foot_image.src="images/left_side_ciencia.jpg";
	document.top_image.src="images/title_who-we-are.gif";
	contentload("who-we-are.html");
	};
 
if(a=="propuesta")
	{ 
	document.foot_image.src="images/left_side_metodologia.jpg";
	document.top_image.src="images/title_propuesta-metodologia.gif";
	contentload("propuesta-y-metodologia.html");
	};

if(a=="proposal")
	{ 
	document.foot_image.src="images/left_side_metodologia.jpg";
	document.top_image.src="images/title_proposal-and-methodology.gif";
	contentload("proposal-and-methodology.html");
	};
 
	
if(a=="casos")
	{ 
	document.foot_image.src="images/left_side_casos.jpg";
	document.top_image.src="images/title_casos-de-exito.gif";
	contentload("casos-de-exito0.html");
	};
	
if(a=="cases")
	{ 
	document.foot_image.src="images/left_side_casos.jpg";
	document.top_image.src="images/title_success-example.gif";
	contentload("success-example0.html");
	};

if(a=="agenda")
	{ 
	document.foot_image.src="images/left_side_agenda.jpg";
	document.top_image.src="images/title_agenda-noticias.gif";
	contentload("agenda-noticias.html");
	};
	
if(a=="dairy")
	{ 
	document.foot_image.src="images/left_side_agenda.jpg";
	document.top_image.src="images/title_dairy-news.gif";
	contentload("dairy-news.html");
	};

};

function opener(a) {
	document.getElementById("popup").style.display="block";
	if (a=="v1"){
		document.getElementById('text-pop').innerHTML="<strong>Realizamos reuniones e intercambiamos informaci&oacute;n con los profesionales:</strong> <br /><br /> Con el fin de conocer en profundidad el proyecto intercambiamos informaci&oacute;n, realizando reuniones en las que presentamos a InnovaTekne y los profesionales exponen su proyecto, aclarando las dudas que existieran.";
	};
	
	if (a=="v2"){
		document.getElementById('text-pop').innerHTML="<strong>Validamos Comercial, T&eacute;cnica y Legalmente el proyecto:</strong><br /><br /> La validaci&oacute;n implica estudiar en detalle los aspectos claves del proyecto con el fin de realizar una evaluaci&oacute;n final. El estudio es realizado por InnovaTekne bajo estrictas reglas de confidencialidad.";
	};
	
	if (a=="v3"){
		document.getElementById('text-pop').innerHTML="<strong>Due Dilligence:</strong><br /><br /> El Due Dilligence corresponde a un an&aacute;lisis exhaustivo de la empresa previo al acuerdo final con el fin de obtener un completo conocimiento de la situaci&oacute;n de la empresa y las probables contingencias.";
	};
	
	if (a=="v4"){
		document.getElementById('text-pop').innerHTML="<strong>Acuerdo Final:</strong><br /><br /> En el Acuerdo Final se sientan las bases de la futura compa&ntilde;&iacute;a, plasmados en el Plan de Negocios y el Acuerdo de Accionistas.";
	};
	
	<!-- VERSIONES EN INGLES -->
	if (a=="vEng1"){
		document.getElementById('text-pop').innerHTML="<strong>We organize meetings and exchange information with the professionals:</strong><br /><br /> in order to know the project deeply, we exchange information in meetings, during which we introduce InnovaTekne and the professionals present their projects, making clear possible doubts.";
	};
	
	if (a=="vEng2"){
		document.getElementById('text-pop').innerHTML="<strong>We validate the project in terms of its commercial, technical and legal aspects:</strong><br /><br /> the validation includes the deep study of the key aspects of the project, in order to make a final evaluation. The study is made by InnovaTekne under strict confidential rules";
	};
	
	if (a=="vEng3"){
		document.getElementById('text-pop').innerHTML="<strong>Due Dilligence:</strong><br /><br /> the Due Dilligence implies an exhaustive analysis of the company, previous to the final agreement, in order to get a complete comprehension of the situation of the company and the probable eventualities.";
	};
	
	if (a=="vEng4"){
		document.getElementById('text-pop').innerHTML="<strong>Final Agreement:</strong><br /><br /> in the final agreement, the bases for the foundation of the future company are set, written in the Business Plan and in the shareholder&acute;s agreement.";
	};
	
	
}

function closer(a) {
	document.getElementById("popup").style.display="none";
	
}

contentload("inicio.html");