var cadena=document.location.search; cadena=cadena.substring(1,cadena.length);
var parametros=cadena.split("&"); var valores=new Array;
var nombres=new Array; var valores_legibles=new Array;
var temporal= new Array; var posicion=null;
var total=null;
for (var i=0; i<parametros.length;i++)
{
	temporal=parametros[i].split("=");valores[i]=temporal[1];nombres[i]=temporal[0];
	valores_legibles[i]=unescape(valores[i]);posicion=valores_legibles[i].indexOf("+");
	while (posicion > -1)
	{
		total=valores_legibles[i].length;
		valores_legibles[i]=valores_legibles[i].substring(0,posicion)+" "+valores_legibles[i].substring(posicion+1,total);
		posicion=valores_legibles[i].indexOf("+");
	}
}
if(document.location.search.length == 0){document.location.replace(document.location.href + '?sessionid=' + (Math.ceil(Math.random()*10000000000000000))+'1' )}
