function popup(name,url,pop_width,pop_height)
{
    window.focus();
    param = "width=" + pop_width + ",height=" + pop_height + ",resizable=yes,scrollbars=yes;status=yes;";
    name += "_popup";
    window.open(url,name,param);
}

