
Popup = function(url, wnd_name, width, height, scrollbars)
{
   var stScrollBar = (scrollbars ? 'yes' : 'no');
   window.open(url, wnd_name, 'width='+width+', height='+height+', status=no, menubar=no, resizable=no, scrollbars='+stScrollBar+', left='+String((screen.width-width)/2)+', top='+String((screen.height-height)/2));
}
