function popup(url, name, width, height)
{
 popupwnd = window.open(url, name, 'width='+width+', height='+height+', scrollbars=no, resizable=no, status=no, menubar=no');
 popupwnd.focus();
}

