function changeIdiom(idioma)
{
	url = window.location;
	url = url.toString();	
	var flag = false;

	if (url.indexOf("#") != -1)	
		url = url.substring(0, url.indexOf("#"));
	
	if (url.indexOf("?") == -1)	
		prefix = "?"
	else
		prefix = "&"	
		
	if (url.indexOf("lang=es") != -1){
		url = url.replace("lang=es", "");
		flag = true;
	}
	else if (url.indexOf("lang=en") != -1){
		url = url.replace("lang=en", "");
		flag = true;		
	}
		
	if (flag)
		url = url +"lang=" + idioma;
	else
		url = url + prefix +"lang=" + idioma;
		
	window.location = url;
}

function idiomaIlumina(idioma){
	if (document.getElementById(idioma)!=null){
		document.getElementById(idioma).style.display = "none";
	}
}

function openImage(id_foto)
{
	vent = window.open('/admin/modulos/imagenes/index.php?action=getHTMLImagen&id_imagen='+id_foto, 'Images', 'width=466, height=392, scrollbars=yes, statusbar=no, resizable=yes');				
	centrarVentana(vent, 466, 392);
	vent.focus();
}
function openPage(doc)
{
	vent = window.open(doc, 'Pages', 'width=466, height=392, scrollbars=yes, statusbar=no, resizable=yes');				
	centrarVentana(vent, 466, 392);
	vent.focus();
}
function centrarVentana(objvent, width, height)
{
	objvent.moveTo((screen.width-width)/2,(screen.height-height)/2);
}

function ampliar(img)
{
	if (img!='noimage.gif')
		window.open('/index.php?action=mostrar_popup&img='+img,'','toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no');
}

/* onchange paises */
function redirect(destino){
if (destino!=0)
	window.location="/index.php?action=compararTarifas&modul=tarjetas&id_seccion=14&template=resultado_comparativas&destino="+destino;
}

// Funciones para los desplegables de las tarjetas
var stock = Array();
function clearSelect(objDest)
{
	//alert("Cant: " + objDest.options.length);
	limitSup = objDest.options.length;
	for(j=0; j < limitSup; j++)
		objDest.options[0] = null;
}

function cargarCantidad(obj, id)
{
	idx = obj.selectedIndex;
	option = obj.options[idx].value;
	maximo = stock[id][option];
	objDest = document.getElementById("cantidad" + id);
	
	if (maximo == 0)
	{
		objDest.style.display = "none"; 
		document.getElementById("mensajeNoPin" + id).style.display = "block";
		document.getElementById("imgCesta" + id).style.visibility = "hidden";
	}
	else
	{		
		objDest.style.display = "block"; 
		document.getElementById("mensajeNoPin" + id).style.display = "none";
		document.getElementById("imgCesta" + id).style.visibility = "visible";

		clearSelect(objDest);
		for(i=0; i<maximo; i++)
		{
			valor = i + 1;
			objDest.options[i] = document.createElement("OPTION");
			objDest.options[i].value = valor;
			objDest.options[i].text = valor;
		}
	}
}

function validaCesta(message)
{
	if (document.getElementById("productsInCesta").value > 0)
	{
		window.location = '/index.php?action=clienteNuevo&modul=usuarios&id_seccion=7';
		return;
	}
	alert(message);
}

function enviarFormDestinosDetalle(letraD, letraH)
{
	document.getElementById("letraD").value = letraD;
	document.getElementById("letraH").value = letraH;
	document.getElementById("listPaises").submit();
}