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