// Flower Power Radio groovy javascript pop-up control - by Sarah Jones @ Webwizards

//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=420,height=590,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=yes");
}



