function canviar(que) {
	rutahttp=document.location.href;
	ruta=frames['grafic'].location.href;
	//alert(ruta);
	if (rutahttp.indexOf("&lang=")>-1){
		rutahttp=rutahttp.substring(0,rutahttp.indexOf("&lang="))+rutahttp.substring(rutahttp.indexOf("&lang=")+7);
		ruta=ruta.substring(0,ruta.indexOf("&lang="))+ruta.substring(ruta.indexOf("&lang=")+7);
		
		document.location.replace(rutahttp+"&lang="+que);
		frames['grafic'].location.replace(ruta+"&lang="+que);		

	}else if (rutahttp.indexOf("?lang=")>-1){
		rutahttp=rutahttp.substring(0,rutahttp.indexOf("?lang="))+"?lang="+que+rutahttp.substring(rutahttp.indexOf("?lang=")+7);

		document.location.replace(rutahttp);
		frames['grafic'].location.href = ruta;
		
	}else {
		document.location.replace(rutahttp+"?lang="+que);
		frames['grafic'].location.href = ruta;
	}
}
function envia()  {
    	document.forms[0].submit();
}
