//
// Popup
//
function popup(url, name, width, height)
{
  newwindow = window.open(url, name, 'width='+width+', height='+height+', toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes');
  newwindow.focus();
}

function PopupNoScroll(url, name, width, height) {
  newWindow = window.open(url, name, 'width=' + width + ',height=' + height + ',status=no toolbar=no, location=no, directories=no, menubar=no, scrollbars=yes, resizable=no');
}
