function showWidgetWindow(url) {
    width=500;
    height=600;
    var w=window.open(url,'editwidget',"scrollbars=1,width="+width+",height="+height+",left="+((screen.width-width)/2)+",top="+((screen.height-height)/2));
    if (window.focus) {w.focus();}
}

function editWidget(widgetid,containerid,title) {
    location.reload();
}


