function copyCount(controlId, contentType) {
    if (contentType == 3)
        alert('Copied! Now go to Orkut and click on the HTML button near the text box (for new Orkut) and paste copied code.');
    else
        alert('Copied! Now paste on Orkut.');
    $.ajax({
        type: "POST",
        url: "includes/copyCounter.php",
        data: "controlId=" + controlId 
            + "&contentType=" + contentType,
    });
}
