function popup(url, height, width)
{
        newwindow=window.open(url,'name','height='+height+',width='+width+',resizable=yes,scrollbars=yes');
        newwindow.focus();
}
