
var w = window;
function openwin(url) {
if ((w == window) || w.closed) { w = open(url, "_blank", "width=300,height=400,scrollbars=yes"); } else { w.focus(); } return(false);
}
