function localevents() {
window.open('localevents.htm','','Width=400,height=500,scrollbars=1,menubar=0,status=0,toolbar=0');
}


function activities() {
location.href="activities.html";
}

function launch(sourse,width,height){
var winname = window.open(sourse,"","width=" + width + ",height=" + height + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no");
}

// The below launch will launch with a scroll bar, above launch will launch with NO scroll bars

function launch2(sourse,width,height){
var winname = window.open(sourse,"","width=" + width + ",height=" + height + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=1,resizable=no,copyhistory=no");
}