function scrambleJS(urlscrambled)
{
    var l  = '';
    l = urlscrambled.replace(/\|/g,'/').replace(/@/g,'.');
    window.location.href = l;
}
