﻿// JScript File

function TagThisImage(strP1, strP2, strP3)
{
    //strP1 photo id
    //strP2 potho link
    //strP1 tag
    
    //alert(strP1 + strP2 + strP3);

    var url = "ajax_get.aspx?m=starPhoto&p=" + strP1 + "&p2=" + strP2 + "&p3=" + strP3
    $.get(url, function(data){
        
        $("#ctl00_ContentPlaceHolder1_Tag_image").empty().append("<span class='tag_added'>Added</span>");
        //alert(data);
    });
}
