function testThis() {
    window.opener.location = "summercamps.php";

}

var myself = window.location;
function testThis() {
    window.opener.location = "summercamps.php";

}

function showNew(filePath) {
    var features = "width=600,height=600";
    features += " , left=50, top=50,status,scrollbars";
    location = window.open(filePath, "locateWin" , features);
    window.location = myself;
    location.focus();
}

function newShow(filePath) {
    window.location = filePath;
}

