
function newwindow(width,height,url,title) 
{
    var newwindow;
    var posleft = (screen.width - width) / 2;
    var postop  = (screen.height - height) / 2;
    
    newwindow = window.open(url,title,'width='+width+',height='+height+',left='+posleft+',top='+postop+',resizeable=yes,scrollbars=yes,status=yes');
    newwindow.focus();
}
