function saveAnchorValue()
{
    var url = document.location;
    var strippedUrl = url.toString().split("#");
    if(strippedUrl.length > 1)
        dnn.setVar("anchorvalue",strippedUrl[1]);
}

