function popOne(url, width, height) {
var features = "width=" + width + ",height=" + height + ",menubar=no,scrollbars=yes,toolbar=no,resizable=yes";
var win = window.open(url, "new", features);
if (win.opener == null) win.opener = this;
if (win.focus) win.focus();
self.name = 'newWindow';
}

