function subMatchups(matchup) {
    req.open("GET", "obj/obj_matchups.php?act=subs&matchup="+matchup);
    req.onreadystatechange = requestStatus_matchups;
    req.send('');
}
function requestStatus_matchups() {
   var lbl = document.getElementById("sub_matchups");

    if (req.readyState == 1) { //searching
         lbl.innerHTML = "Loading Matchups..";
    } else if (req.readyState == 4 ) { //full results
        response = req.responseText;
        arrResponse = response.split("||");
        one = arrResponse[0];//feeds
               
        lbl.innerHTML = one;
    }
}

function showMatchup(link) {
    document.getElementById("matchup").src = link;
    document.getElementById("matchup").style.border = "1px solid #333333";
}
