// JavaScript Document
function cargar(mostrar){
	//document.getElementById("id12").style.display='block';
	var fun='<img src="imagenes/us.png" alt="colombia" width="16" height="11" /> <select name="select2" id="select2" onchange="redirec(this.value)" > &nbsp;         	           <option value="  http://translate.google.com.co/translate?js=y&prev=_t&hl=es&ie=UTF-8&layout=1&eotf=1&u=http://www.fundacionecoahorro.org&sl=es&tl=en" selected="selected">English</option>           	    	<option value="http://www.fundacionecoahorro.org/">Spanish</option> 	</select>';
	try{
		if(document.getElementById("id12").innerHTML!='Idioma'){
			document.getElementById("ej").innerHTML=fun;	
			//alert("ok");
			document.getElementById("idplataforma").style.display = 'none';
			document.getElementById("idfondo").style.display = 'none';
			mostrar=false;
		}
	}catch(e){
		document.getElementById("ej").innerHTML=fun;
		}
		//alert(BrowserDetect.browser);
		if(BrowserDetect.browser=="Explorer"){
			if((BrowserDetect.version=="6")||(BrowserDetect.version=="5.5")||(BrowserDetect.version=="5")){
				//alert(BrowserDetect.version);
				location.href="i6/";
			}
		}
	if(mostrar){
		document.getElementById("idplataforma").style.display = 'block';
		document.getElementById("idfondo").style.display = 'block';
	}
		
}
function cerrarCapas(){
		document.getElementById("idplataforma").style.display = 'none';
		document.getElementById("idfondo").style.display = 'none';
}
function abrir(direccion, pantallacompleta, herramientas, direcciones, estado, barramenu, barrascroll, cambiatamano, ancho, alto, izquierda, arriba, sustituir){ 
     var opciones = "fullscreen=" + pantallacompleta + 
                 ",toolbar=" + herramientas + 
                 ",location=" + direcciones + 
                 ",status=" + estado + 
                 ",menubar=" + barramenu + 
                 ",scrollbars=" + barrascroll + 
                 ",resizable=" + cambiatamano + 
                 ",width=" + ancho + 
                 ",height=" + alto + 
                 ",left=" + izquierda + 
                 ",top=" + arriba; 
     var ventana = window.open(direccion,"venta",opciones,sustituir); 

}                     
var BrowserDetect = {
	init: function () {
		this.browser = this.searchString(this.dataBrowser) || "An unknown browser";
		this.version = this.searchVersion(navigator.userAgent)
			|| this.searchVersion(navigator.appVersion)
			|| "an unknown version";
		this.OS = this.searchString(this.dataOS) || "an unknown OS";
	},
	searchString: function (data) {
		for (var i=0;i<data.length;i++)	{
			var dataString = data[i].string;
			var dataProp = data[i].prop;
			this.versionSearchString = data[i].versionSearch || data[i].identity;
			if (dataString) {
				if (dataString.indexOf(data[i].subString) != -1)
					return data[i].identity;
			}
			else if (dataProp)
				return data[i].identity;
		}
	},
	searchVersion: function (dataString) {
		var index = dataString.indexOf(this.versionSearchString);
		if (index == -1) return;
		return parseFloat(dataString.substring(index+this.versionSearchString.length+1));
	},
	dataBrowser: [
		{
			string: navigator.userAgent,
			subString: "Chrome",
			identity: "Chrome"
		},
		{ 	string: navigator.userAgent,
			subString: "OmniWeb",
			versionSearch: "OmniWeb/",
			identity: "OmniWeb"
		},
		{
			string: navigator.vendor,
			subString: "Apple",
			identity: "Safari",
			versionSearch: "Version"
		},
		{
			prop: window.opera,
			identity: "Opera"
		},
		{
			string: navigator.vendor,
			subString: "iCab",
			identity: "iCab"
		},
		{
			string: navigator.vendor,
			subString: "KDE",
			identity: "Konqueror"
		},
		{
			string: navigator.userAgent,
			subString: "Firefox",
			identity: "Firefox"
		},
		{
			string: navigator.vendor,
			subString: "Camino",
			identity: "Camino"
		},
		{		// for newer Netscapes (6+)
			string: navigator.userAgent,
			subString: "Netscape",
			identity: "Netscape"
		},
		{
			string: navigator.userAgent,
			subString: "MSIE",
			identity: "Explorer",
			versionSearch: "MSIE"
		},
		{
			string: navigator.userAgent,
			subString: "Gecko",
			identity: "Mozilla",
			versionSearch: "rv"
		},
		{ 		// for older Netscapes (4-)
			string: navigator.userAgent,
			subString: "Mozilla",
			identity: "Netscape",
			versionSearch: "Mozilla"
		}
	],
	dataOS : [
		{
			string: navigator.platform,
			subString: "Win",
			identity: "Windows"
		},
		{
			string: navigator.platform,
			subString: "Mac",
			identity: "Mac"
		},
		{
			   string: navigator.userAgent,
			   subString: "iPhone",
			   identity: "iPhone/iPod"
	    },
		{
			string: navigator.platform,
			subString: "Linux",
			identity: "Linux"
		}
	]

};
BrowserDetect.init();
function redirec(a){
	try{
		if(document.getElementById("id12").innerHTML!='Idioma'){
			parent.location.href='http://www.fundacionecoahorro.org/';
		}else{
			location.href=a;
		}
	}catch(e){
		parent.location.href='http://www.fundacionecoahorro.org/';
	}
}
