﻿function launchJukeBox() {

    var win = window.open("/Pages/JukeBox.aspx", "CampQualityJukeBox", "toolbar=0,status=0,location=0,menubar=0,resizable=0,scrollbars=0,directories=0,width=715,height=400");

    if (win == null) {
        alert("Please disable your popup blocker for the Camp Quality website to use the Juke Box");
    }
}
function closeJukeBox() {
    if (this.window.parent != null) {
        self.close();
    }
    else {
        alert("This window was not opened from the Camp Quality website link. Please close this window manually");
    }
}