function popup(link,windowname)
    {
    var href;
    if(typeof(link)=='string')
    href=link;
    else
    href=link.href;
    window.open(href,windowname,'width=700,height=500,scrollbars=yes');
    return false;
    }
