function openDetail(bid)
{
    url = "detail.php?id=" + bid;
    var sub = window.open(url,'detailWindow','width=950,height=750,status=0,location=0,resizable=0,scrollbars=1,toolbar=0');
    window.blur();
    sub.focus();
    return false;
}

function goUrl(url)
{
    location.href= url;
}

