/*
if (screen.width >= 1024){
	window.resizeTo(screen.width,screen.height);
}else{
	if (screen.width >= 800){
		window.resizeTo(800,572);
	}else{
		window.resizeTo(640,480);
	}
}
window.moveTo(0,0);
*/
scrollmarks = new Array();
scrollmarks['home']=0;
scrollmarks['empresa']=1074;
scrollmarks['soluciones']=1830;
scrollmarks['tecnologia']=2846;
scrollmarks['proyectos']=3482;

flashes = new Array();
flashes[0] = 'empresa';
flashes[1] = 'soluciones';
flashes[2] = 'tecnologia';
flashes[3] = 'proyectos';

divranges = new Array();

divranges['empresa'] = new Array();
divranges['soluciones'] = new Array();
divranges['tecnologia'] = new Array();
divranges['proyectos'] = new Array();

divranges['empresa'].left = 745;
divranges['empresa'].right = 1432;
divranges['soluciones'].left = 1433;
divranges['soluciones'].right = 2470;
divranges['tecnologia'].left = 2471;
divranges['tecnologia'].right = 3157;
divranges['proyectos'].left = 3158;
divranges['proyectos'].right = 4078;

autoscroll = false;

function showdivs()
{
	if (!autoscroll && MM_FlashCanPlay)
	{
		for (var i=flashes.length-1; i>=0; i--)
		{
			if (document.body){
				scrleft = document.body.scrollLeft;
			}else{
				scrleft = window.pageXOffset;
			}
			if ( scrleft > divranges[flashes[i]].left && scrleft < divranges[flashes[i]].right)
			{
				//eval(flashes[i] + '_flash_div.style.display=""');
				if (eval('typeof(' + flashes[i] + '_flash_div)')!='undefined'){
					obj = eval(flashes[i] + '_flash_div');
					fl = eval(flashes[i] + '_flash');
					if (obj.style.display=='none')
					{
						//fl.Rewind();
						//fl.Play();
						obj.style.display = '';
					}
				}
			}else{
				if (eval('typeof(' + flashes[i] + '_flash_div)')!='undefined'){
					eval(flashes[i] + '_flash_div.style.display="none";');
				}
			}
		}
	}
}


function go_to(label)
{
	autoscroll = true;
	scroll_to(scrollmarks[label]);
	autoscroll = false;
	showdivs();
}

function scroll_to(to)
{
	autoscroll = true;
	if (document.body){
		distance = Math.abs(to - document.body.scrollLeft);
		direction = (to - document.body.scrollLeft) / Math.abs(to - document.body.scrollLeft);
	}else{
		distance = Math.abs(to - window.pageXOffset);
		direction = (to - window.pageXOffset) / Math.abs(to - window.pageXOffset);
	}

	var i=0;
	var step = Math.round(distance/10);
	var slowdown_point = distance / 1.75;
	while (i<distance)
	{
		if ( (distance-i) < slowdown_point && step > 1)
		{
			step = Math.round(step * 0.85);
		}
		if ( (distance-i) < step )
		{
			autoscroll = false;
			step = (distance-i);
		}
		i+=step;
		window.scrollBy(step * direction,0);
	}
}

function show(caso)
{
	var html = '';
	if(String(eval('casos["' + caso + '"]'))!='undefined')
	{
		var obj = eval('casos["' + caso + '"]');
		html += "<table border='0' cellspacing='0' cellpadding='1' width='350'><tr><td><font face=verdana size=1><b>" + obj.title + "</b></font></td></tr>";
		for (var i=0; i<obj.solutions.length; i++)
		{
			html += "<tr><td><font face='verdana' size='1' color='#7f7f7f'>" + obj.solutions[i] + "</font></td></tr>";
		}
		html += "<tr><td><img src='i/dot.gif' height='3'></td></tr><tr><td><font face='verdana' size='1'>" + obj.desc + "</font><br><br></td></tr>";
		html += "<tr><td valign='top'><table border='0' cellspacing='0' cellpadding='2'><tr>";
		if(obj.img!='')
		{
			html += "<td valign='top'><table border='0' cellpadding='0' cellspacing='1' bgcolor='#FB9804'><tr><td bgcolor='#ffffff'><img src='" + obj.img + "' border='0'></td></tr></table><br></td>";
		}

		html += "<td valign='top'>";

		if (obj.date!='')
		{
			html += "<font face='verdana' size='1' color='#FB9804'><b>Date: </b></font><font face='verdana' size='1'>" + obj.date + "</font><br><br>";
		}

		if (obj.tecnology!='')
		{
			html += "<font face='verdana' size='1' color='#FB9804'><b>technology </b></font><font face='verdana' size='1'>" + obj.tecnology + "</font><br>";
		}

		html += "</td>";

		html += "</td></tr>";
		for (var i=0; i<obj.links.length; i++)
		{
			html += "<tr><td><img src='i/casos_indica.gif' border=0 height=11 width=11 align='absmiddle'><a href='" + obj.links[i].url + "' target=_blank><font face='verdana' size='1' color='#7F8982'><b>" + obj.links[i].desc + "</b></font></a></td></tr>";
		}
		html += "</table></td></tr></table>";
		if (document.getElementById)
		{
	   		x = document.getElementById("casos_board");
	   		x.innerHTML = '';
	   		x.innerHTML = html;
	   	}else if (document.all)
	   	{
	   		x = document.all["casos_board"];
	   		x.innerHTML = html;
	   	}else if (document.layers)
	   	{
	   		x = document.layers["casos_board"];
	   		x.document.open();
	   		x.document.write(html);
	   		x.document.close();
	   		//alert(html);
	   	}
		/*
		if (typeof(casos_board)!='undefined'){
			casos_board.innerHTML = html;
		}else{
			//document.casos_board_il.document.write(html);
			document.getElementById("casos_board_l").innerHTML=html;
		}
		*/
	}else{
		//alert(caso + ' no existe');
	}
}

//---------Begins Flash Detection------------
var MM_FlashCanPlay = false;

var MM_contentVersion = 6;

var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;

if(plugin){
	var words = navigator.plugins["Shockwave Flash"].description.split(" ");
	for(var i=0; i < words.length; ++i){
		if (isNaN(parseInt(words[i])))
			continue;
		var MM_PluginVersion = words[i];
	}
	var MM_FlashCanPlay = MM_PluginVersion >= MM_contentVersion;
}else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 && (navigator.appVersion.indexOf("Win") != -1)){
	document.write('<SCR' + 'IPT LANGUAGE=VBScript\> \n'); //FS hide this from IE4.5 Mac by splitting the tag
	document.write('on error resume next \n');
	document.write('MM_FlashCanPlay = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & MM_contentVersion)))\n');
	document.write('</SCR' + 'IPT\> \n');
}
//---------Ends Flash Detection------------


casos = new Array();

//------------------------------------

casos['Alico'] = new Array();
casos['Alico'].solutions = new Array();
casos['Alico'].links = new Array();

casos['Alico'].title = 'Alico Vida y Retiro';
casos['Alico'].tecnology = '<br> Flash <br> HTML <br> JavaScript';
casos['Alico'].date = ''
casos['Alico'].solutions[0] = 'Corporate web site';
casos['Alico'].desc = "American Life Insurance Company, a member of the group AIG has redesigned its web site with W3. We created a very modern looking yet clean, light and easy to navigate web site. Inside visitors will find information about their product and services, career opportunities, info for brokers and a gateway to a company representative that will handle incoming requests."
casos['Alico'].img = 'i/clientes_alico.jpg';

casos['Alico'].links[0] = new Array();
casos['Alico'].links[0].url = 'http://www.alico.com.ar';
casos['Alico'].links[0].desc = 'www.alico.com.ar';

//------------------------------------

casos['calidad.org'] = new Array();
casos['calidad.org'].solutions = new Array();
casos['calidad.org'].links = new Array();

casos['calidad.org'].title = 'calidad.org';
casos['calidad.org'].tecnology = '<br>Collaborative portal<br>e-newsletter<br> PHP <BR> MySql <BR>';
casos['calidad.org'].date = '';
casos['calidad.org'].solutions[0] = 'online community';
casos['calidad.org'].solutions[1] = 'user management';
casos['calidad.org'].solutions[2] = 'content management';
casos['calidad.org'].desc = 'Calidad.org is a web site specialized in Quality standards, ISOs, and other Total Quality techniques. It is a bilingual site (Spanish Portuguese) and its community is growing rapidly throughout Latin America. The site was developed to be auto managed by its members. Registered users can participate in discussion forums, publish their CV, own essays, articles and reviews,  populate the digital library using online content management tools.';
casos['calidad.org'].img = 'i/clientes_calidad.jpg';

casos['calidad.org'].links[0] = new Array();
casos['calidad.org'].links[0].url = 'http://www.calidad.org';
casos['calidad.org'].links[0].desc = 'www.calidad.org';

//------------------------------------

casos['citibank'] = new Array();
casos['citibank'].solutions = new Array();
casos['citibank'].links = new Array();

casos['citibank'].title = 'Citibank';
casos['citibank'].tecnology = '<br>Teamsite 5.1<br>Flash<br>JavaScript';
casos['citibank'].date = '';
casos['citibank'].solutions[0] = 'content management';
casos['citibank'].solutions[1] = 'solution design';
casos['citibank'].solutions[2] = 'application development';
casos['citibank'].desc = 'We developed Citibank corporate and consumer bank web sites for 21 countries in Latin America plus other business units in the U.S. (IPB, PBOE). We started by developing Argentina web site in 1996. In order to easily replicate Argentina\'s successful experience in the whole region we developed an online software tool called WCKoL (Web Construction Kit online) .  Using WCKoL webmasters in each country are responsible for managing their web site contents while the system guarantees branding consistency and provides a friendly interface for non technical people. Thanks to the implementation of WCKoL Latin American web sites are considered the most consistent in terms of branding and look & feel within Citibank. Currently the sites are being maintaned with TeamSite CMS.';
casos['citibank'].img = 'i/clientes_citi.jpg';

casos['citibank'].links[0] = new Array();
casos['citibank'].links[0].url = '';
casos['citibank'].links[0].desc = '';

//------------------------------------


casos['citibank_espanol'] = new Array();
casos['citibank_espanol'].solutions = new Array();
casos['citibank_espanol'].links = new Array();

casos['citibank_espanol'].title = 'Citibank.com en español';
casos['citibank_espanol'].tecnology = '<br>Teamsite 5.5<br>Flash<br>JavaScript';
casos['citibank_espanol'].date = '';
casos['citibank_espanol'].solutions[0] = 'content management';
casos['citibank_espanol'].solutions[1] = 'solution design';
casos['citibank_espanol'].solutions[2] = 'application development';
casos['citibank_espanol'].desc = 'We developed Citibank.com en Español. This is Citigroup web site aimed to their U.S. Hispanic audience (estimated in 40 million people in the US only). Currently the site is being maintaned using TeamSite CMS.';
casos['citibank_espanol'].img = 'i/clientes_citibank_espanol.jpg';

casos['citibank_espanol'].links[0] = new Array();
casos['citibank_espanol'].links[0].url = 'http://www.citibank.com/espanol';
casos['citibank_espanol'].links[0].desc = 'www.citibank.com/espanol';

//------------------------------------


casos['tarjetas_citi'] = new Array();
casos['tarjetas_citi'].solutions = new Array();
casos['tarjetas_citi'].links = new Array();

casos['tarjetas_citi'].title = 'Tarjetas Citi. Hispanic Citicards site';
casos['tarjetas_citi'].tecnology = '<br>JSP<br>Flash<br>JavaScript';
casos['tarjetas_citi'].date = '';
casos['tarjetas_citi'].solutions[0] = 'content management';
casos['tarjetas_citi'].solutions[1] = 'solution design';
casos['tarjetas_citi'].solutions[2] = 'hispanic markets';
casos['tarjetas_citi'].desc = 'W3 was commissioned to develop the Spanish version of Citigroup Citicards.com web site. The site provides information about credit cards products, client support and access to the Account Online system';
casos['tarjetas_citi'].img = 'i/clientes_tarjetas_citi.jpg';

casos['tarjetas_citi'].links[0] = new Array();
casos['tarjetas_citi'].links[0].url = 'http://www.tarjetasciti.com';
casos['tarjetas_citi'].links[0].desc = 'www.tarjetasciti.com';

//------------------------------------


casos['citiservice'] = new Array();
casos['citiservice'].solutions = new Array();
casos['citiservice'].links = new Array();

casos['citiservice'].title = 'Citiservice';
casos['citiservice'].tecnology = '<br>Contro Panel<br>ASP<br>SQLServer<br>';
casos['citiservice'].date = '';
casos['citiservice'].solutions[0] = 'knowledge management';
casos['citiservice'].solutions[1] = 'dashboard';
casos['citiservice'].solutions[2] = 'decision making';
casos['citiservice'].desc = 'CitiService, a regional division of Citibank Corporate Banking in charge of customer service needed to share performance information with the heads of CitiService in 20 countries in Latin America. We developed an Intranet application that allows authorized users to input monthly data (number of abandoned calls, IVR usage, customer satisfaction index, absenteeism, attritions, etc. ). Each country is responsible for loading its own figures.  The executive dashboard creates a synthesized view of the performance indicators using graphs, charts, pies and tables. It lets the user quickly identify performance below minimum acceptance levels, compare relative performance between countries and project regional  figures in a given period of time. The implementation allows managers to identify potential problems and make decisions in a very short time.';
casos['citiservice'].img = 'i/clientes_citi_citiservice.jpg';

casos['citiservice'].links[0] = new Array();
casos['citiservice'].links[0].url = '';
casos['citiservice'].links[0].desc = '';

//------------------------------------

casos['el descueve'] = new Array();
casos['el descueve'].solutions = new Array();
casos['el descueve'].links = new Array();

casos['el descueve'].title = 'el descueve';
casos['el descueve'].tecnology = '';
casos['el descueve'].date = '';
casos['el descueve'].solutions[0] = '';
casos['el descueve'].desc = '';
casos['el descueve'].img = 'i/clientes_descueve.jpg';

casos['el descueve'].links[0] = new Array();
casos['el descueve'].links[0].url = 'http://www.eldescueve.com';
casos['el descueve'].links[0].desc = 'www.eldescueve.com';

//------------------------------------

casos['guardia real'] = new Array();
casos['guardia real'].solutions = new Array();
casos['guardia real'].links = new Array();

casos['guardia real'].title = 'Guardia Real';
casos['guardia real'].tecnology = '';
casos['guardia real'].date = '';
casos['guardia real'].solutions[0] = '';
casos['guardia real'].desc = '';
casos['guardia real'].img = 'i/clientes_guardia.jpg';

casos['guardia real'].links[0] = new Array();
casos['guardia real'].links[0].url = '';
casos['guardia real'].links[0].desc = '';

//------------------------------------

casos['hostal de granados'] = new Array();
casos['hostal de granados'].solutions = new Array();
casos['hostal de granados'].links = new Array();

casos['hostal de granados'].title = 'hostal de granados';
casos['hostal de granados'].tecnology = '<br> Flash <br> PHP<br> MySql';
casos['hostal de granados'].date = '';
casos['hostal de granados'].solutions[0] = '';
casos['hostal de granados'].desc = '';
casos['hostal de granados'].img = 'i/clientes_hostal.jpg';

casos['hostal de granados'].links[0] = new Array();
casos['hostal de granados'].links[0].url = '';
casos['hostal de granados'].links[0].desc = '';

//------------------------------------

casos['jardín de los ceibos'] = new Array();
casos['jardín de los ceibos'].solutions = new Array();
casos['jardín de los ceibos'].links = new Array();

casos['jardín de los ceibos'].title = 'jardín de los ceibos';
casos['jardín de los ceibos'].tecnology = '';
casos['jardín de los ceibos'].date = '';
casos['jardín de los ceibos'].solutions[0] = '';
casos['jardín de los ceibos'].desc = '';
casos['jardín de los ceibos'].img = 'i/clientes_ceibos.jpg';

casos['jardín de los ceibos'].links[0] = new Array();
casos['jardín de los ceibos'].links[0].url = '';
casos['jardín de los ceibos'].links[0].desc = '';

//------------------------------------

casos['kabusacki'] = new Array();
casos['kabusacki'].solutions = new Array();
casos['kabusacki'].links = new Array();

casos['kabusacki'].title = 'kabusacki';
casos['kabusacki'].tecnology = '';
casos['kabusacki'].date = '';
casos['kabusacki'].solutions[0] = '';
casos['kabusacki'].desc = '';
casos['kabusacki'].img = 'i/clientes_kabu.jpg';

casos['kabusacki'].links[0] = new Array();
casos['kabusacki'].links[0].url = '';
casos['kabusacki'].links[0].desc = '';

//------------------------------------

casos['santa isabel'] = new Array();
casos['santa isabel'].solutions = new Array();
casos['santa isabel'].links = new Array();

casos['santa isabel'].title = 'santa isabel';
casos['santa isabel'].tecnology = '';
casos['santa isabel'].date = '';
casos['santa isabel'].solutions[0] = '';
casos['santa isabel'].desc = '';
casos['santa isabel'].img = 'i/clientes_sisabel.jpg';

casos['santa isabel'].links[0] = new Array();
casos['santa isabel'].links[0].url = '';
casos['santa isabel'].links[0].desc = '';

//------------------------------------

casos['sudestada'] = new Array();
casos['sudestada'].solutions = new Array();
casos['sudestada'].links = new Array();

casos['sudestada'].title = 'sudestada';
casos['sudestada'].tecnology = '';
casos['sudestada'].date = '';
casos['sudestada'].solutions[0] = '';
casos['sudestada'].desc = '';
casos['sudestada'].img = 'i/clientes_sudestada.jpg';

casos['sudestada'].links[0] = new Array();
casos['sudestada'].links[0].url = '';
casos['sudestada'].links[0].desc = '';

//------------------------------------

casos['sw'] = new Array();
casos['sw'].solutions = new Array();
casos['sw'].links = new Array();

casos['sw'].title = 'SW - Southern Winds Líneas Aéreas';
casos['sw'].tecnology = '<br> CRM <br>Flash <br> PHP <br> MySQL';
casos['sw'].date = '';
casos['sw'].solutions[0] = 'Internet site';
casos['sw'].solutions[1] = 'Flights timetable';
casos['sw'].desc = 'Southen Winds is a domestic airline that connects all major cities in Argentina and neighboring countries. Their web site gives information about flights, timetables, prices, connections, delays and other useful information for passengers.';
casos['sw'].img = 'i/clientes_sw.gif';

casos['sw'].links[0] = new Array();
casos['sw'].links[0].url = '';
casos['sw'].links[0].desc = '';

//------------------------------------

casos['ticketek'] = new Array();
casos['ticketek'].solutions = new Array();
casos['ticketek'].links = new Array();

casos['ticketek'].title = 'Ticketek';
casos['ticketek'].tecnology = '<br>E-Commerce<br>Content Management<br>PHP <br> Perl <br> SQLServer <BR> MySql';
casos['ticketek'].date = '';
casos['ticketek'].solutions[0] = 'e-commerce ';
casos['ticketek'].solutions[1] = 'content management';
casos['ticketek'].desc = 'Ticketek is an Australian ticket selling company established in Argentina. Their web site is a good example of an e-commerce implementation end-to-end. Visitors may get information about shows, schedules, pricing, location, availability and buy their tickets online. The applications performs real time credit card validation and a content management tool allows an administrator to update information about venues.';
casos['ticketek'].img = 'i/clientes_ticketek.jpg';

casos['ticketek'].links[0] = new Array();
casos['ticketek'].links[0].url = '';
casos['ticketek'].links[0].desc = '';

//------------------------------------

casos['3com'] = new Array();
casos['3com'].solutions = new Array();
casos['3com'].links = new Array();

casos['3com'].title = '3com';
casos['3com'].tecnology = '<br>Behavior Models <br>Flash <br> HTML <br> JavaScript';
casos['3com'].date = '';
casos['3com'].solutions[0] = 'Web sites for Argentina, Chile, Uruguay and Paraguay';
casos['3com'].desc = 'W3 has been working with 3Com Southern Cone since 1997. Their web sites have gone through several changes of look & feel. The sites are an open channel to resellers -who have a special restricted section- and end users. There are lots of information, tutorials, specs and manuals of their products. A monthly e-mailed newsletter complements the service.';
casos['3com'].img = 'i/clientes_3com.gif';

casos['3com'].links[0] = new Array();
casos['3com'].links[0].url = '';
casos['3com'].links[0].desc = '';

//------------------------------------

casos['3com news'] = new Array();
casos['3com news'].solutions = new Array();
casos['3com news'].links = new Array();

casos['3com news'].title = '3com news';
casos['3com news'].tecnology = '<br> Flash <br> HTML <br> Mail Script';
casos['3com news'].date = '';
casos['3com news'].solutions[0] = '';
casos['3com news'].desc = '';
casos['3com news'].img = '';

casos['3com news'].links[0] = new Array();
casos['3com news'].links[0].url = '';
casos['3com news'].links[0].desc = '';

//------------------------------------

casos['cavas rosell'] = new Array();
casos['cavas rosell'].solutions = new Array();
casos['cavas rosell'].links = new Array();

casos['cavas rosell'].title = 'Rosell Boher';
casos['cavas rosell'].tecnology = '';
casos['cavas rosell'].date = '';
casos['cavas rosell'].solutions[0] = '';
casos['cavas rosell'].desc = '';
casos['cavas rosell'].img = 'i/clientes_cavas.jpg';

casos['cavas rosell'].links[0] = new Array();
casos['cavas rosell'].links[0].url = 'http://www.rosellboher.com';
casos['cavas rosell'].links[0].desc = 'www.rosellboher.com';

//------------------------------------

casos['centro médico pueyrredón'] = new Array();
casos['centro médico pueyrredón'].solutions = new Array();
casos['centro médico pueyrredón'].links = new Array();

casos['centro médico pueyrredón'].title = 'centro médico pueyrredón';
casos['centro médico pueyrredón'].tecnology = '';
casos['centro médico pueyrredón'].date = '';
casos['centro médico pueyrredón'].solutions[0] = '';
casos['centro médico pueyrredón'].desc = '';
casos['centro médico pueyrredón'].img = '';

casos['centro médico pueyrredón'].links[0] = new Array();
casos['centro médico pueyrredón'].links[0].url = '';
casos['centro médico pueyrredón'].links[0].desc = '';

//------------------------------------

casos['Carrefour'] = new Array();
casos['Carrefour'].solutions = new Array();
casos['Carrefour'].links = new Array();

casos['Carrefour'].title = 'Carrefour';
casos['Carrefour'].tecnology = '<br>Director<BR>';
casos['Carrefour'].date = '';
casos['Carrefour'].solutions[0] = 'multimedia presentation';
casos['Carrefour'].desc = 'Carrefour is one of the biggest supermarket chains in Latin America and Europe. Every year W3 develops a multimedia presentation for a marathon organized by the company. It is the most popular street sport event  with more than a million participants.';
casos['Carrefour'].img = 'i/clientes_carrefour.jpg';

casos['Carrefour'].links[0] = new Array();
casos['Carrefour'].links[0].url = '';
casos['Carrefour'].links[0].desc = '';

//------------------------------------

casos['Club Amigos'] = new Array();
casos['Club Amigos'].solutions = new Array();
casos['Club Amigos'].links = new Array();

casos['Club Amigos'].title = 'Club Amigos';
casos['Club Amigos'].tecnology = '';
casos['Club Amigos'].date = '';
casos['Club Amigos'].solutions[0] = '';
casos['Club Amigos'].desc = '';
casos['Club Amigos'].img = '';

casos['Club Amigos'].links[0] = new Array();
casos['Club Amigos'].links[0].url = '';
casos['Club Amigos'].links[0].desc = '';

//------------------------------------

casos['Correo Argentino '] = new Array();
casos['Correo Argentino '].solutions = new Array();
casos['Correo Argentino '].links = new Array();

casos['Correo Argentino '].title = 'Correo Argentino ';
casos['Correo Argentino '].tecnology = '<br> Flash <br> HTML <br> JavaScript';
casos['Correo Argentino '].date = '';
casos['Correo Argentino '].solutions[0] = 'redesign of corporate site ';
casos['Correo Argentino '].solutions[1] = 'integration with legacy systems';
casos['Correo Argentino '].solutions[2] = 'e-commerce';
casos['Correo Argentino '].desc = 'The redesigned Correo Argentino (the official postal services) web site added new functionality including shipment tracking, zip code searches, price list checking and other corporate services. Some areas of the company such as philately, sell their products online. W3 worked together with the technology area of Correo in order to integrate legacy systems with TCP/IP processes. We are currently developing a hybrid mail project. The product will allow corporate and consumer users to compose mail from the web and select a list of recipients. The mail will be distributed to the printing station closest to each recipient and will be physically shipped.';
casos['Correo Argentino '].img = 'i/clientes_correo.gif';

casos['Correo Argentino '].links[0] = new Array();
casos['Correo Argentino '].links[0].url = 'http://www.correoargentino.com.ar';
casos['Correo Argentino '].links[0].desc = 'www.correoargentino.com.ar';

//------------------------------------

casos['Correo PCarta'] = new Array();
casos['Correo PCarta'].solutions = new Array();
casos['Correo PCarta'].links = new Array();

casos['Correo PCarta'].title = 'PCarta - Correo Argentino';
casos['Correo PCarta'].tecnology = '<br> PHP <br> JavaScript <br> Oracle 8i <br> Perl <BR> Visual Basic';
casos['Correo PCarta'].date = '';
casos['Correo PCarta'].solutions[0] = 'hybrid mail system';
casos['Correo PCarta'].solutions[1] = 'web to paper';
casos['Correo PCarta'].desc = 'Correo Argentino has commissioned W3 to develop a web base system similar to hotmail but instead of delivering e-mails it sends the messages in electronic format to the closest point to the recipient where Correo has a printer station.  There the mail is printed, finished and delivered to recipent\'s physical address. W3 also developed the back end, queuing and printing application.';
casos['Correo PCarta'].img = 'i/clientes_correo_pcarta.jpg';

casos['Correo PCarta'].links[0] = new Array();
casos['Correo PCarta'].links[0].url = '';
casos['Correo PCarta'].links[0].desc = '';

//------------------------------------

casos['Cumbre digital argentina'] = new Array();
casos['Cumbre digital argentina'].solutions = new Array();
casos['Cumbre digital argentina'].links = new Array();

casos['Cumbre digital argentina'].title = 'Cumbre digital argentina';
casos['Cumbre digital argentina'].tecnology = '';
casos['Cumbre digital argentina'].date = '';
casos['Cumbre digital argentina'].solutions[0] = '';
casos['Cumbre digital argentina'].desc = '';
casos['Cumbre digital argentina'].img = '';

casos['Cumbre digital argentina'].links[0] = new Array();
casos['Cumbre digital argentina'].links[0].url = '';
casos['Cumbre digital argentina'].links[0].desc = '';

//------------------------------------

casos['E-nfo'] = new Array();
casos['E-nfo'].solutions = new Array();
casos['E-nfo'].links = new Array();

casos['E-nfo'].title = 'E-nfo';
casos['E-nfo'].tecnology = '';
casos['E-nfo'].date = '';
casos['E-nfo'].solutions[0] = '';
casos['E-nfo'].desc = '';
casos['E-nfo'].img = 'i/clientes_enfo.jpg';

casos['E-nfo'].links[0] = new Array();
casos['E-nfo'].links[0].url = '';
casos['E-nfo'].links[0].desc = '';

//------------------------------------

casos['One World'] = new Array();
casos['One World'].solutions = new Array();
casos['One World'].links = new Array();

casos['One World'].title = 'One World';
casos['One World'].tecnology = '<br> Flash <br> HTML <br> JavaScript';
casos['One World'].date = '';
casos['One World'].solutions[0] = 'Web site with members contest database';
casos['One World'].desc = 'The airline alliance One World organized a contest among their members to win a trip to Europe and Australia. Visitors must fill in a questionaire and input their personal information. A database stores the records and makes sure people participate only once. The site has high impact visuals.';
casos['One World'].img = 'i/clientes_oneworld.jpg';

casos['One World'].links[0] = new Array();
casos['One World'].links[0].url = '';
casos['One World'].links[0].desc = '';

//------------------------------------

casos['EM Quality'] = new Array();
casos['EM Quality'].solutions = new Array();
casos['EM Quality'].links = new Array();

casos['EM Quality'].title = 'EM Quality';
casos['EM Quality'].tecnology = '<br> HTML <BR> Javascript <BR>';
casos['EM Quality'].date = '';
casos['EM Quality'].solutions[0] = '';
casos['EM Quality'].desc = '';
casos['EM Quality'].img = '';

casos['EM Quality'].links[0] = new Array();
casos['EM Quality'].links[0].url = '';
casos['EM Quality'].links[0].desc = '';

//------------------------------------

casos['Greenpeace'] = new Array();
casos['Greenpeace'].solutions = new Array();
casos['Greenpeace'].links = new Array();

casos['Greenpeace'].title = 'Greenpeace Cono Sur';
casos['Greenpeace'].tecnology = '<br> Flash <br> PHP <br> MySQL';
casos['Greenpeace'].date = '';
casos['Greenpeace'].solutions[0] = 'e-commerce';
casos['Greenpeace'].solutions[1] = 'fund raising';
casos['Greenpeace'].solutions[2] = 'content management';
casos['Greenpeace'].desc = 'ecologist organization Greenpeace has adopted the Internet as its main channel for distribution of information and fund raising. They receive hundreds of new member subscriptions per month. During 1999 Greenpeace raised about $ 60.000.- through its web site. The Argentinian branch was the first in receiving funds through the net in August 1996 and currently gets 25% of what Greenpeace U.S. does being the web their main source of income.';
casos['Greenpeace'].img = 'i/clientes_green.jpg';

casos['Greenpeace'].links[0] = new Array();
casos['Greenpeace'].links[0].url = '';
casos['Greenpeace'].links[0].desc = '';

//------------------------------------

casos['Nextel'] = new Array();
casos['Nextel'].solutions = new Array();
casos['Nextel'].links = new Array();

casos['Nextel'].title = 'Nextel Argentina';
casos['Nextel'].tecnology = '<br>Flash <br>HTML<br>JavaScript';
casos['Nextel'].date = '';
casos['Nextel'].solutions[0] = 'Institutional web site';
casos['Nextel'].desc = 'Nextel Argentina hired W3 to develop their local web site with product offering, a customer service section, and other useful data for customers. The sites follows headquarters branding guidelines but a distinctive touch was added.';
casos['Nextel'].img = 'i/clientes_nextel.jpg';

casos['Nextel'].links[0] = new Array();
casos['Nextel'].links[0].url = '';
casos['Nextel'].links[0].desc = '';

//------------------------------------

casos['Movicom'] = new Array();
casos['Movicom'].solutions = new Array();
casos['Movicom'].links = new Array();

casos['Movicom'].title = 'Movicom - Bell South';
casos['Movicom'].tecnology = '<br> Director <br> IEAK 5.5';
casos['Movicom'].date = '';
casos['Movicom'].solutions[0] = 'Interactive presentation and guided installation tour for  ISP';
casos['Movicom'].desc = 'Movicom Bell South is one of the main telecommunication carriers and Internet Service Provider. W3 developed a high impact multimedia presentation for the clients of the ISP area of the company. This presentation is remade every year and includes all necessary setup files to install and configure the dial up connection.';
casos['Movicom'].img = 'i/clientes_movicom.jpg';

casos['Movicom'].links[0] = new Array();
casos['Movicom'].links[0].url = '';
casos['Movicom'].links[0].desc = '';

//------------------------------------

casos['Intecel'] = new Array();
casos['Intecel'].solutions = new Array();
casos['Intecel'].links = new Array();

casos['Intecel'].title = 'Intecel';
casos['Intecel'].tecnology = '';
casos['Intecel'].date = '';
casos['Intecel'].solutions[0] = '';
casos['Intecel'].desc = '';
casos['Intecel'].img = '';

casos['Intecel'].links[0] = new Array();
casos['Intecel'].links[0].url = '';
casos['Intecel'].links[0].desc = '';

//------------------------------------

casos['Oneworld'] = new Array();
casos['Oneworld'].solutions = new Array();
casos['Oneworld'].links = new Array();

casos['Oneworld'].title = 'Oneworld';
casos['Oneworld'].tecnology = '';
casos['Oneworld'].date = '';
casos['Oneworld'].solutions[0] = '';
casos['Oneworld'].desc = '';
casos['Oneworld'].img = 'i/clientes_oneworld.jpg';

casos['Oneworld'].links[0] = new Array();
casos['Oneworld'].links[0].url = '';
casos['Oneworld'].links[0].desc = '';

//------------------------------------

casos['Telecom'] = new Array();
casos['Telecom'].solutions = new Array();
casos['Telecom'].links = new Array();

casos['Telecom'].title = 'Telecom';
casos['Telecom'].tecnology = '<br>Data Mining<br>';
casos['Telecom'].date = '';
casos['Telecom'].solutions[0] = 'Intranet development';
casos['Telecom'].desc = 'The marketing area of Telecom requested W3 to develop an Intranet site where information about long distance customers and their behaviors was going to be uploaded. This statistics oriented web site is supported by an application that does the calculations and estimates projections. Users load raw data and the sites shows the results displayed in tables.';
casos['Telecom'].img = 'i/clientes_telecom.jpg';

casos['Telecom'].links[0] = new Array();
casos['Telecom'].links[0].url = '';
casos['Telecom'].links[0].desc = '';

//------------------------------------

casos['Bocasistemas     '] = new Array();
casos['Bocasistemas     '].solutions = new Array();
casos['Bocasistemas     '].links = new Array();

casos['Bocasistemas     '].title = 'Boca Juniors';
casos['Bocasistemas     '].tecnology = '<br> Flash <br> Java <br> PHP <br> SQL Server';
casos['Bocasistemas     '].date = '';
casos['Bocasistemas     '].solutions[0] = 'e-commerce';
casos['Bocasistemas     '].solutions[1] = 'club members online services';
casos['Bocasistemas     '].desc = 'Boca Juniors is the most important football club in the country. Millions of fans visit their pages every month. They can take a virtual tour around the stadium and purchase tickets online. Club members can login and check their account statement. There is also general information about the club, better ways to acces it during games, press releases and info about the fan\'s idols.';
casos['Bocasistemas     '].img = 'i/clientes_boca.jpg';

casos['Bocasistemas     '].links[0] = new Array();
casos['Bocasistemas     '].links[0].url = '';
casos['Bocasistemas     '].links[0].desc = '';

//------------------------------------

casos['Calidad mailing '] = new Array();
casos['Calidad mailing '].solutions = new Array();
casos['Calidad mailing '].links = new Array();

casos['Calidad mailing '].title = 'Calidad mailing ';
casos['Calidad mailing '].tecnology = '<br> Foros<br>PHP <br> MySql';
casos['Calidad mailing '].date = '';
casos['Calidad mailing '].solutions[0] = '';
casos['Calidad mailing '].desc = '';
casos['Calidad mailing '].img = '';

casos['Calidad mailing '].links[0] = new Array();
casos['Calidad mailing '].links[0].url = '';
casos['Calidad mailing '].links[0].desc = '';

//------------------------------------

casos['Camisea   '] = new Array();
casos['Camisea   '].solutions = new Array();
casos['Camisea   '].links = new Array();

casos['Camisea   '].title = 'Camisea - Pipeline construction (Techint group)';
casos['Camisea   '].tecnology = '<br> Drill Down<br>Data Mining<br> Flash <br>ASP <br> Oracle 8i<br>';
casos['Camisea   '].date = '';
casos['Camisea   '].solutions[0] = 'Intranet -  Web application to follow up pipeline construction';
casos['Camisea   '].desc = 'Techint and several companies in the group are jointly working in the construction of a gas pipeline in Peru. This 4 year project is monitored through an Intranet shared by Tenaris, Transportadora de Gas del Perú, Tecpetrol and external providers. Different types of control panels and dashboards expose information to the user. Estimated values vs real data show how forecasts are being met in terms of time, budget, pipes and mechinery, working force, etc.';
casos['Camisea   '].img = 'i/clientes_pcamisea.jpg';

casos['Camisea   '].links[0] = new Array();
casos['Camisea   '].links[0].url = '';
casos['Camisea   '].links[0].desc = '';

//------------------------------------

casos['Citibank mail CBOL   '] = new Array();
casos['Citibank mail CBOL   '].solutions = new Array();
casos['Citibank mail CBOL   '].links = new Array();

casos['Citibank mail CBOL   '].title = 'Citibank mail CBOL   ';
casos['Citibank mail CBOL   '].tecnology = '<br>RAD<br>';
casos['Citibank mail CBOL   '].date = '';
casos['Citibank mail CBOL   '].solutions[0] = '';
casos['Citibank mail CBOL   '].desc = '';
casos['Citibank mail CBOL   '].img = '';

casos['Citibank mail CBOL   '].links[0] = new Array();
casos['Citibank mail CBOL   '].links[0].url = '';
casos['Citibank mail CBOL   '].links[0].desc = '';

//------------------------------------

casos['Citibank nuevo diseño '] = new Array();
casos['Citibank nuevo diseño '].solutions = new Array();
casos['Citibank nuevo diseño '].links = new Array();

casos['Citibank nuevo diseño '].title = 'Citibank nuevo diseño ';
casos['Citibank nuevo diseño '].tecnology = '<br>Focus Group<br> HTML <BR>JavaScript';
casos['Citibank nuevo diseño '].date = '';
casos['Citibank nuevo diseño '].solutions[0] = '';
casos['Citibank nuevo diseño '].desc = '';
casos['Citibank nuevo diseño '].img = '';

casos['Citibank nuevo diseño '].links[0] = new Array();
casos['Citibank nuevo diseño '].links[0].url = '';
casos['Citibank nuevo diseño '].links[0].desc = '';

//------------------------------------

casos['CitiGold CE Insite (intranet)  UAT'] = new Array();
casos['CitiGold CE Insite (intranet)  UAT'].solutions = new Array();
casos['CitiGold CE Insite (intranet)  UAT'].links = new Array();

casos['CitiGold CE Insite (intranet)  UAT'].title = 'Citigroup CeInsite - CitiGold intranet';
casos['CitiGold CE Insite (intranet)  UAT'].tecnology = '<br>Jsp <BR>J2EE <BR>XML <BR>XLS <BR>';
casos['CitiGold CE Insite (intranet)  UAT'].date = '';
casos['CitiGold CE Insite (intranet)  UAT'].solutions[0] = 'Web application that distributes information among CitiGold representatives';
casos['CitiGold CE Insite (intranet)  UAT'].desc = 'The site is a collection of tools and information used by CitiGold sales force on a daily basis to reach their costumers and prospects. The site has a regional scope serving 15 countries. Thanks to Single Sign-On technology each user is granted access to the tools and data available for his/her country and specific role.  The site is the gateway to a series of applications such as financial calculators and screeners, call tipification tools, wealth management profilers and market information.';
casos['CitiGold CE Insite (intranet)  UAT'].img = '';

casos['CitiGold CE Insite (intranet)  UAT'].links[0] = new Array();
casos['CitiGold CE Insite (intranet)  UAT'].links[0].url = '';
casos['CitiGold CE Insite (intranet)  UAT'].links[0].desc = '';

//------------------------------------

casos['Citigroup'] = new Array();
casos['Citigroup'].solutions = new Array();
casos['Citigroup'].links = new Array();

casos['Citigroup'].title = 'Citigroup CeInsite - CitiGold intranet';
casos['Citigroup'].tecnology = '<br> SiteMinder<br>Single Sign-On <br>Flash <br> JSP <br> J2EE <br> XML <br> XSL  ';
casos['Citigroup'].date = '';
casos['Citigroup'].solutions[0] = 'Web application that distributes information among CitiGold representatives';
casos['Citigroup'].solutions[0] = '';
casos['Citigroup'].desc = 'The site is a collection of tools and information used by CitiGold sales force on a daily basis to reach their costumers and prospects. The site has a regional scope serving 15 countries. Thanks to Single Sign-On technology each user is granted access to the tools and data available for his/her country and specific role.  The site is the gateway to a series of applications such as financial calculators and screeners, call tipification tools, wealth management profilers and market information.';
casos['Citigroup'].img = 'i/clientes_citi_ceinsite.jpg';

casos['Citigroup'].links[0] = new Array();
casos['Citigroup'].links[0].url = '';
casos['Citigroup'].links[0].desc = '';

//------------------------------------

casos['Citibank PBOE PWC   '] = new Array();
casos['Citibank PBOE PWC   '].solutions = new Array();
casos['Citibank PBOE PWC   '].links = new Array();

casos['Citibank PBOE PWC   '].title = 'Citibank PBOE PWC   ';
casos['Citibank PBOE PWC   '].tecnology = '<br> Flash <br> HTML <br> JavaScript';
casos['Citibank PBOE PWC   '].date = '';
casos['Citibank PBOE PWC   '].solutions[0] = '';
casos['Citibank PBOE PWC   '].desc = '';
casos['Citibank PBOE PWC   '].img = '';

casos['Citibank PBOE PWC   '].links[0] = new Array();
casos['Citibank PBOE PWC   '].links[0].url = '';
casos['Citibank PBOE PWC   '].links[0].desc = '';

//------------------------------------

casos['citibank shell   '] = new Array();
casos['citibank shell   '].solutions = new Array();
casos['citibank shell   '].links = new Array();

casos['citibank shell   '].title = 'Citibank-Shell cobranded site for employees';
casos['citibank shell   '].tecnology = '<br> Flash <br> HTML <br> JavaScript';
casos['citibank shell   '].date = '';
casos['citibank shell   '].solutions[0] = 'Site promoting special banking benefits';
casos['citibank shell   '].desc = 'This Citibank-Shell cobranded mini site is addressed to Shell expatriot employees. It provides information about special banking services and benefits. It allows the user to sign up an account opening process. Other Citibank cobranded sites have been developed for PWC and Cendant Mobility.';
casos['citibank shell   '].img = 'i/clientes_citi_shell.jpg';

casos['citibank shell   '].links[0] = new Array();
casos['citibank shell   '].links[0].url = '';
casos['citibank shell   '].links[0].desc = '';

//------------------------------------

casos['Citibank Personal trainer   '] = new Array();
casos['Citibank Personal trainer   '].solutions = new Array();
casos['Citibank Personal trainer   '].links = new Array();

casos['Citibank Personal trainer   '].title = 'Citibank Personal trainer   ';
casos['Citibank Personal trainer   '].tecnology = '<br> Flash <br> ColdFusion <br> JavaScript';
casos['Citibank Personal trainer   '].date = '';
casos['Citibank Personal trainer   '].solutions[0] = '';
casos['Citibank Personal trainer   '].desc = '';
casos['Citibank Personal trainer   '].img = '';

casos['Citibank Personal trainer   '].links[0] = new Array();
casos['Citibank Personal trainer   '].links[0].url = '';
casos['Citibank Personal trainer   '].links[0].desc = '';

//------------------------------------

casos['Citibank presentaciones '] = new Array();
casos['Citibank presentaciones '].solutions = new Array();
casos['Citibank presentaciones '].links = new Array();

casos['Citibank presentaciones '].title = 'Citibank presentaciones ';
casos['Citibank presentaciones '].tecnology = '';
casos['Citibank presentaciones '].date = '';
casos['Citibank presentaciones '].solutions[0] = '';
casos['Citibank presentaciones '].desc = '';
casos['Citibank presentaciones '].img = '';

casos['Citibank presentaciones '].links[0] = new Array();
casos['Citibank presentaciones '].links[0].url = '';
casos['Citibank presentaciones '].links[0].desc = '';

//------------------------------------

casos['Citibank Proyecto Hispanos   '] = new Array();
casos['Citibank Proyecto Hispanos   '].solutions = new Array();
casos['Citibank Proyecto Hispanos   '].links = new Array();

casos['Citibank Proyecto Hispanos   '].title = 'Citibank Proyecto Hispanos   ';
casos['Citibank Proyecto Hispanos   '].tecnology = '<br>Customer Research';
casos['Citibank Proyecto Hispanos   '].date = '';
casos['Citibank Proyecto Hispanos   '].solutions[0] = '';
casos['Citibank Proyecto Hispanos   '].desc = '';
casos['Citibank Proyecto Hispanos   '].img = '';

casos['Citibank Proyecto Hispanos   '].links[0] = new Array();
casos['Citibank Proyecto Hispanos   '].links[0].url = '';
casos['Citibank Proyecto Hispanos   '].links[0].desc = '';

//------------------------------------

casos['Citibank | Tarjetas en español '] = new Array();
casos['Citibank | Tarjetas en español '].solutions = new Array();
casos['Citibank | Tarjetas en español '].links = new Array();

casos['Citibank | Tarjetas en español '].title = 'Citibank | Tarjetas en español ';
casos['Citibank | Tarjetas en español '].tecnology = '';
casos['Citibank | Tarjetas en español '].date = '';
casos['Citibank | Tarjetas en español '].solutions[0] = '';
casos['Citibank | Tarjetas en español '].desc = '';
casos['Citibank | Tarjetas en español '].img = '';

casos['Citibank | Tarjetas en español '].links[0] = new Array();
casos['Citibank | Tarjetas en español '].links[0].url = '';
casos['Citibank | Tarjetas en español '].links[0].desc = '';

//------------------------------------

casos['Citibank | Tarjetas en español '] = new Array();
casos['Citibank | Tarjetas en español '].solutions = new Array();
casos['Citibank | Tarjetas en español '].links = new Array();

casos['Citibank | Tarjetas en español '].title = 'Citibank | Tarjetas en español ';
casos['Citibank | Tarjetas en español '].tecnology = '';
casos['Citibank | Tarjetas en español '].date = '';
casos['Citibank | Tarjetas en español '].solutions[0] = '';
casos['Citibank | Tarjetas en español '].desc = '';
casos['Citibank | Tarjetas en español '].img = '';

casos['Citibank | Tarjetas en español '].links[0] = new Array();
casos['Citibank | Tarjetas en español '].links[0].url = '';
casos['Citibank | Tarjetas en español '].links[0].desc = '';

//------------------------------------

casos['Citibank | Tarjetas en español '] = new Array();
casos['Citibank | Tarjetas en español '].solutions = new Array();
casos['Citibank | Tarjetas en español '].links = new Array();

casos['Citibank | Tarjetas en español '].title = 'Citibank | Tarjetas en español ';
casos['Citibank | Tarjetas en español '].tecnology = '';
casos['Citibank | Tarjetas en español '].date = '';
casos['Citibank | Tarjetas en español '].solutions[0] = '';
casos['Citibank | Tarjetas en español '].desc = '';
casos['Citibank | Tarjetas en español '].img = '';

casos['Citibank | Tarjetas en español '].links[0] = new Array();
casos['Citibank | Tarjetas en español '].links[0].url = '';
casos['Citibank | Tarjetas en español '].links[0].desc = '';

//------------------------------------

casos['CitiGold PBOE'] = new Array();
casos['CitiGold PBOE'].solutions = new Array();
casos['CitiGold PBOE'].links = new Array();

casos['CitiGold PBOE'].title = 'CitiGold PBOE';
casos['CitiGold PBOE'].tecnology = '';
casos['CitiGold PBOE'].date = '';
casos['CitiGold PBOE'].solutions[0] = '';
casos['CitiGold PBOE'].desc = '';
casos['CitiGold PBOE'].img = '';

casos['CitiGold PBOE'].links[0] = new Array();
casos['CitiGold PBOE'].links[0].url = '';
casos['CitiGold PBOE'].links[0].desc = '';

//------------------------------------

casos['Citigold Portal Demo'] = new Array();
casos['Citigold Portal Demo'].solutions = new Array();
casos['Citigold Portal Demo'].links = new Array();

casos['Citigold Portal Demo'].title = 'Citigold Portal Demo';
casos['Citigold Portal Demo'].tecnology = '';
casos['Citigold Portal Demo'].date = '';
casos['Citigold Portal Demo'].solutions[0] = '';
casos['Citigold Portal Demo'].desc = '';
casos['Citigold Portal Demo'].img = '';

casos['Citigold Portal Demo'].links[0] = new Array();
casos['Citigold Portal Demo'].links[0].url = '';
casos['Citigold Portal Demo'].links[0].desc = '';

//------------------------------------

casos['McDonalds'] = new Array();
casos['McDonalds'].solutions = new Array();
casos['McDonalds'].links = new Array();

casos['McDonalds'].title = "Mc Donald's";
casos['McDonalds'].tecnology = '<br>Data Warehouse<br>ASP<br>Oracle 8i<br>XML<br>e-mailing<br>Flash';
casos['McDonalds'].date = '';
casos['McDonalds'].solutions[0] = 'Corporate web site';
casos['McDonalds'].desc = "McDonald's web site was conceived to appeal a young audience. It contains a games section but also important information about food and cooking policies. Visitors can search for branches near their location, subscribe to a newsletter segmented by area of residence that informs about promotions and special deals. There are special areas for the press and registered users.";
casos['McDonalds'].img = 'i/clientes_md.jpg';

casos['McDonalds'].links[0] = new Array();
casos['McDonalds'].links[0].url = 'http://www.mcdonalds.com.ar';
casos['McDonalds'].links[0].desc = 'www.mcdonalds.com.ar';

casos['McDonalds'].links[1] = new Array();
casos['McDonalds'].links[1].url = 'http://www.mcdonalds.com.uy';
casos['McDonalds'].links[1].desc = 'www.mcdonalds.com.uy';

casos['McDonalds'].links[2] = new Array();
casos['McDonalds'].links[2].url = 'http://www.mcdonalds.cl';
casos['McDonalds'].links[2].desc = 'www.mcdonalds.cl';

//------------------------------------

casos['Clark'] = new Array();
casos['Clark'].solutions = new Array();
casos['Clark'].links = new Array();

casos['Clark'].title = "Clarke, Modet & Co.";
casos['Clark'].tecnology = '<br>PHP<br>CSS<br>JavaScript<br>HTML<br>My SQL';
casos['Clark'].date = '';
casos['Clark'].solutions[0] = 'Intranet';
casos['Clark'].desc = "Clarke, Modet & Co. is a leading company in the Intellectual and Industrial Property sector. It has worldwide presence. The intranet was developed with the objective of improving internal communications, and the information flow. Information is the key element of this company so a better information management tool was essential to deliver better services to its clients.";
casos['Clark'].img = 'i/clientes_clark.jpg';

casos['Clark'].links[0] = new Array();
casos['Clark'].links[0].url = '';
casos['Clark'].links[0].desc = '';

//------------------------------------

casos['Bunge'] = new Array();
casos['Bunge'].solutions = new Array();
casos['Bunge'].links = new Array();

casos['Bunge'].title = "Bunge";
casos['Bunge'].tecnology = '<br>ASP<br>VB Script<br>JavaScript<br>HTML<br>SQL Server';
casos['Bunge'].date = '';
casos['Bunge'].solutions[0] = 'Coporate web site';
casos['Bunge'].desc = "Bunge is a leading company in the agro-business sector employing around 1000 workers and generating work for another 10,000 in Argentina only. W3 developed its institutional web site that includes a content management system and special functionality for producers, partners and other stakeholders. We are currently working together with Bunge on impelementing SAP Portal in the company.";
casos['Bunge'].img = 'i/clientes_bunge.jpg';

casos['Bunge'].links[0] = new Array();
casos['Bunge'].links[0].url = 'http://www.bungeargentina.com';
casos['Bunge'].links[0].desc = 'www.bungeargentina.com';

//------------------------------------

casos['Bunge2'] = new Array();
casos['Bunge2'].solutions = new Array();
casos['Bunge2'].links = new Array();

casos['Bunge2'].title = "Bunge Intranet";
casos['Bunge2'].tecnology = '<br>SAP Portal<br>NetWeaver<br>';
casos['Bunge2'].date = '';
casos['Bunge2'].solutions[0] = 'Implementation of SAP Portal in Bunge\'s Intranet.';
casos['Bunge2'].desc = "Bunge Argentina is one of the most important agro-business companies in the country, employing around 1,000 workers. As it happens in most organizations of this size, a lot of documents and non-structured information is generated. This data is usually difficult to organize and transform into valuable knowledge for the company. That is was the driver that motivated Bunge to develop an Intranet platform in order to optimize the advantages of SAP. This platform was already in use to store and process the company transactional data.<br>The main objective of the project was to increase the productivity through the use of a company-wide Intranet. This approach provided collaborators with a more comprehensive vision of the company.<br>Bunge not only needed a technical implementation, but also a strategy of cultural change inside the company. Before launch, W3 carried out an internal marketing and training campaign together with Bunge. Bunge’s staff had the chance to get acquainted with the concepts they were going to use after the implementation.";
casos['Bunge2'].img = 'i/clientes_bunge2.jpg';

casos['Bunge2'].links[0] = new Array();
casos['Bunge2'].links[0].url = '';
casos['Bunge2'].links[0].desc = '';

//------------------------------------

casos['DOMEC'] = new Array();
casos['DOMEC'].solutions = new Array();
casos['DOMEC'].links = new Array();

casos['DOMEC'].title = "DOMEC";
casos['DOMEC'].tecnology = '<br>PHP<br>My SQL<br>JavaScript<br>HTML<br>CSS<br>DHTML';
casos['DOMEC'].date = '';
casos['DOMEC'].solutions[0] = 'Web site redesign';
casos['DOMEC'].desc = "Domec is a appliance manufacturing company with 40 years of experience in making kitchen equipment. W3 redesigned its web site mainly oriented toward product promotion and local and international sales.";
casos['DOMEC'].img = 'i/clientes_domec.jpg';

casos['DOMEC'].links[0] = new Array();
casos['DOMEC'].links[0].url = 'http://www.domec.com.ar';
casos['DOMEC'].links[0].desc = 'www.domec.com.ar';

//------------------------------------

casos['Swiss'] = new Array();
casos['Swiss'].solutions = new Array();
casos['Swiss'].links = new Array();

casos['Swiss'].title = 'Swiss Medical Group';
casos['Swiss'].tecnology = '<br>Java<br>VB Script<br>Sybase Database<br>Active Directory<br>JavaScript<br>HTML / CSS<br>Visual Basic<br>Sybase Portal';
casos['Swiss'].date = '';
casos['Swiss'].solutions[0] = 'Contact manager tool';
casos['Swiss'].desc = 'Swiss Medical Group is a leading company in the HMO business in Argentina. We developed an Intranet system that facilitates access to the 3000 + contacts distributed nation-wide in different companies of the Group.';
casos['Swiss'].img = 'i/clientes_swiss.jpg';

casos['Swiss'].links[0] = new Array();
casos['Swiss'].links[0].url = '';
casos['Swiss'].links[0].desc = '';

//------------------------------------

casos['Previsol'] = new Array();
casos['Previsol'].solutions = new Array();
casos['Previsol'].links = new Array();

casos['Previsol'].title = 'Previsol';
casos['Previsol'].tecnology = '<br>ASP<br>SQL Server';
casos['Previsol'].date = '';
casos['Previsol'].solutions[0] = 'Internet site';
casos['Previsol'].desc = 'This site has been newly redesigned. Clients can get their account statement online and follow the flow of their investment. It is also possible to request a detailed historical statement, send messages to a consultant, send personal information changes such as address, etc.  For the general visitor the site offers info about different plans, transcripts of the pension law and the way the money is invested by the company.';
casos['Previsol'].img = 'i/clientes_previsol.jpg';

casos['Previsol'].links[0] = new Array();
casos['Previsol'].links[0].url = 'http://www.previsol.com.ar';
casos['Previsol'].links[0].desc = 'www.previsol.com.ar';

//------------------------------------

casos['Quickfood'] = new Array();
casos['Quickfood'].solutions = new Array();
casos['Quickfood'].links = new Array();

casos['Quickfood'].title = 'Quickfood';
casos['Quickfood'].tecnology = '<br>E-Commerce<br>Content Management';
casos['Quickfood'].date = '';
casos['Quickfood'].solutions[0] = 'Corporate site';
casos['Quickfood'].desc = 'Web site redesign. Users may register and purchase products online. Online contests are often launched by the company. There is a reserved section for distributors and special information for investors.';
casos['Quickfood'].img = 'i/clientes_quickfood.jpg';

casos['Quickfood'].links[0] = new Array();
casos['Quickfood'].links[0].url = 'http://www.quickfood.com.ar';
casos['Quickfood'].links[0].desc = 'www.quickfood.com.ar';

//------------------------------------

casos['Recrear Argentina'] = new Array();
casos['Recrear Argentina'].solutions = new Array();
casos['Recrear Argentina'].links = new Array();

casos['Recrear Argentina'].title = 'Recrear Argentina';
casos['Recrear Argentina'].tecnology = '<br>Content Management<br>';
casos['Recrear Argentina'].date = '';
casos['Recrear Argentina'].solutions[0] = '';
casos['Recrear Argentina'].desc = '';
casos['Recrear Argentina'].img = 'i/clientes_recrear.jpg';

casos['Recrear Argentina'].links[0] = new Array();
casos['Recrear Argentina'].links[0].url = '';
casos['Recrear Argentina'].links[0].desc = '';

//------------------------------------

casos['Sales Forms'] = new Array();
casos['Sales Forms'].solutions = new Array();
casos['Sales Forms'].links = new Array();

casos['Sales Forms'].title = 'Sales Forms';
casos['Sales Forms'].tecnology = '';
casos['Sales Forms'].date = '';
casos['Sales Forms'].solutions[0] = '';
casos['Sales Forms'].desc = '';
casos['Sales Forms'].img = '';

casos['Sales Forms'].links[0] = new Array();
casos['Sales Forms'].links[0].url = '';
casos['Sales Forms'].links[0].desc = '';

//------------------------------------

casos['Tecpetrol'] = new Array();
casos['Tecpetrol'].solutions = new Array();
casos['Tecpetrol'].links = new Array();

casos['Tecpetrol'].title = 'Tecpetrol - Tecgas - Transportadora de Gas del Perú';
casos['Tecpetrol'].tecnology = '<br>Portal Solution<br>Collaboration tool<br>ASP<br>Oracle<br>XML<br>XSL';
casos['Tecpetrol'].date = '';
casos['Tecpetrol'].solutions[0] = 'Intranet';
casos['Tecpetrol'].solutions[1] = 'Content management';
casos['Tecpetrol'].solutions[2] = 'Knowledge management';
casos['Tecpetrol'].desc = 'The three energy companies of Techint group are connected by one Intranet that allows them share intellectual resources and information among employees located in Argentina, Venezuela and Peru.  This Single Sign-On solution grants access to different applications depending on each user profile and role in the company. Shared tools include calendar, discussion forums, chat, online polls, accident reports and monitoring, oil and gas production main indicators, libraries of documents and maps, online courses and corporate news.';
casos['Tecpetrol'].img = 'i/clientes_tecpetrol.jpg';

casos['Tecpetrol'].links[0] = new Array();
casos['Tecpetrol'].links[0].url = '';
casos['Tecpetrol'].links[0].desc = '';

//------------------------------------

casos['TGN'] = new Array();
casos['TGN'].solutions = new Array();
casos['TGN'].links = new Array();

casos['TGN'].title = 'TGN';
casos['TGN'].tecnology = '<br>Portal Solution<br>Single Sign-On<br>ASP<br>Oracle 8i<br>XML<br>XSL';
casos['TGN'].date = '';
casos['TGN'].solutions[0] = 'Intranet development';
casos['TGN'].solutions[1] = 'Knowledge management';
casos['TGN'].solutions[2] = 'Collaboration tool';
casos['TGN'].desc = 'TGN (Transportadora de Gas del Norte, a member of the Techint group) is the owner of most of the gas pipelines in Argentina. The company  has 580 networked users and access to information was a concern for the management. After extensive assessment and consulting we deployed a customized version of FLOiDD (a collaborative and knowledge management tool).  Today project creation and document sharing is easily performed in all their offices distributed throughout the country. The right set of user permissions plus the flexible way FLOiDD manages content publishing made possible a much faster access to vital information, filtering out information not relevant for a specific user.';
casos['TGN'].img = 'i/clientes_tgn.jpg';

casos['TGN'].links[0] = new Array();
casos['TGN'].links[0].url = '';
casos['TGN'].links[0].desc = '';

//------------------------------------

casos['dish'] = new Array();
casos['dish'].solutions = new Array();
casos['dish'].links = new Array();

casos['dish'].title = 'DISH Network';
casos['dish'].tecnology = '<br>ASP<br>JavaScript<br>SQL<br>Flash<br>Content management';
casos['dish'].date = '';
casos['dish'].solutions[0] = 'Corporate Portal';
casos['dish'].desc = 'DISH Network is a satellite TV service provider in the USA. The Portal provides information about products, services, program guide search tools, a remote control tutorial, football schedule, retailer finder and useful information for their customers.';
casos['dish'].img = 'i/clientes_dish.jpg';

casos['dish'].links[0] = new Array();
casos['dish'].links[0].url = 'http://www.dishnetwork.com/content/dishlatino/';
casos['dish'].links[0].desc = 'www.dishnetwork.com/<br>content/dishlatino/';

//------------------------------------

function abrirPopup(url,ancho,alto){
	ancho = (ancho)?ancho:790;
	alto = (alto)?alto:550;
	posX = screen.width / 2 - ancho / 2;
	posY = screen.height / 2 - alto / 2;
	win = window.open(url,'Ventana','resizable=1,scrollbars=1,top='+posY+',left='+posX+',height='+alto+',width='+ancho );
}

//----------------------------------------
if (window.addEventListener) {
    window.addEventListener("DOMMouseScroll", escrollear, false); } else {
    document.onmousewheel = escrollear;
}
scrollval = 0;
function escrollear(e){
    if(typeof(e)!="undefined"){
        if (e.detail >= 3){
            var velocidad = 50;
        }else if(e.detail <= -3){
            var velocidad = -50;
        }
    }else{
        if (window.event.wheelDelta >= 120){
            var velocidad = -50;
        }else if(window.event.wheelDelta <= -120){
            var velocidad = 50;
        }
    }
    scrollval+=velocidad;
    scrollTo(scrollval,0);
}
//-----------------------------------
