var html = "<a href=\"http://movies.aol.com/franchise/movie_meter/movie_recommendations";

var u1 = document.URL.split("?");
if (u1.length > 1) {
    var u2 = u1[1].split("&");
    var v;
    var s, m;
    for (var i=0; i<u2.length; i++) {
        v = u2[i].split("=");
        if (v[0]=="section") {
            s = "section=" + v[1];
        } else if (v[0]=="movie") {
            m = "movie=" + v[1];
        }
    }
    if (s != undefined) {
        html += "?" + s;
        if (m != undefined) {
            html += "&" + m;
        }
    }
}
html += "\" title=\"back\" class=\"linksmall\">";
html += "<img src=\"http://cdn.digitalcity.com/movie_meter/arrow.gif\" width=\"3\" height=\"5\" alt=\"\">&nbsp;Back</a>";
document.write(html);