function popup_left(url, name, width, height)
{
    settings=
    "toolbar=yes,location=yes,directories=no,"+
    "status=no,menubar=no,scrollbars=yes,"+
    "resizable=no,width="+width+",height="+height;

    MyNewWindow=window.open(url,name,settings);
}
