// Beaumont Society javascript pop-up control - by Sarah Jones

//this opens external links in a small window
function external(page) {
OpenWin = this.open(page, "CtrlWindow","width=800,height=700,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");
}

//this opens internal links in a small window
function internal(page) {
OpenWin = this.open(page, "CtrlWindow","width=900,height=800,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");
}



