function reportContent(contType, contId, tattler, offender) {
	if (!confirm("Are you sure you want to report this content as inappropriate (you will remain anonymous)?"))
		return;
	
    var xmlHttpReq = false;
    var self = this;
    // Mozilla/Safari
    if (window.XMLHttpRequest) {
        self.xmlHttpReq = new XMLHttpRequest();
    }
    // IE
    else if (window.ActiveXObject) {
        self.xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
    }
    self.xmlHttpReq.open('GET', "/qk2/myqk/reportContent.aspx?contType=" + contType + "&contId=" + contId + "&cca=" + tattler + "&ccb=" + offender, true);
    self.xmlHttpReq.onreadystatechange = function() {
        if (self.xmlHttpReq.readyState == 4) {
	        alert("Thank you for reporting inappropriate content to help keep QuicKutz.com a happy place.  QuicKutz representatives review inappropriate content notifications in the order of receipt.");
        }
    }
    self.xmlHttpReq.send(null);
}
