//
// report
//
function bcReport(sUrl) {
    sUrl =  "../misc/report_pop.aspx?url=" + sUrl;   
    // inside modal?
    if ((typeof _bcPopup != "undefined") && (_bcPopup.IsModal)) { 
        // load on self
        location.href = sUrl;        
    } else {
        // new modal or popup
        return bcShowModal({ href: sUrl, innerWidth: 500, innerHeight: 350 });
    }
	return false;
}


//
// bcShowModal (in master.js)
//
