﻿function poptastic(url) {
    var newwindow;
    newwindow = window.open(url, 'Infocouncil', 'height=700, width=750, scrollbars=1, resizable=1');
    if (window.focus) { newwindow.focus() }
}

