﻿function ReportAbuse(lnkAbuse, userGuid, location)
{
     if(userGuid != '')
     {
        Modalbox.show($('abuse-modalbox'), {title: lnkAbuse.title, width: 450, aspnet: true}); 
        return false;
     }
     else
     {
       
        lnkAbuse.href = "/sign?ReturnUrl=" + location + "&action=reportAbuse";
     }
}

