function changeConvention(id) { var base = "/changeConvention.php?conID="; base = base . id; window.location = base; } function redirect() { window.location = "http://www.google.com/"; } function fillRight(data) { //document.getElementById("header").scrollIntoView(true); document.getElementById('contentRight').innerHTML = data; } function fillLeft(data) { document.getElementById('contentLeft').innerHTML = data; } function adminRight(userID) { $.get('adminGetRight.php?userID=' + userID, fillRight); } // Masquerade Stuff function divisionsRight(divisionID) { $.get('divisionsGetRight.php?divisionID=' + divisionID, fillRight); } function awardsRight(awardID) { $.get('awardsGetRight.php?awardID=' + awardID, fillRight); } function judgesRight(judgeID) { $.get('judgesGetRight.php?judgeID=' + judgeID, fillRight); } function addGroupForm() { $.get('addEntryForm.php', fillRight); fillRight(form); } function groupsRight(entryID) { $.get('groupsGetRight.php?entryID=' + entryID, fillRight); } function addParticipantForm(entryID) { $.get('addParticipantForm.php?entryID=' + entryID, fillRight); } function participantsRight(participantID) { $.get('participantsGetRight.php?participantID=' + participantID, fillRight); } function groupMembersRight(entryID) { $.get('groupMembersRight.php?entryID=' +entryID, fillRight); } function rehearsalRight(rehearsalTimeID) { $.get('rehearsalGetRight.php?rehearsalTimeID=' +rehearsalTimeID, fillRight); } function craftsmanshipTimeRight(craftsmanshipID) { $.get('craftsmanshipTimeGetRight.php?craftsmanshipID=' +craftsmanshipID, fillRight); } function showOrderRight(showOrderID) { $.get('showOrderGetRight.php?showOrderID=' +showOrderID, fillRight); } function craftsmanshipRight(entryID) { $.get('craftsmanshipGetRight.php?entryID=' +entryID, fillRight); } function performanceRight(entryID) { $.get('performanceGetRight.php?entryID=' +entryID, fillRight); } function craftsmanshipTimeLeft() { $.get('craftsmanshipTimeGetLeft.php',fillLeft); }