<!--
function GetTop3Pics()
{
    var response = AjaxUtilsMethods.Fetch_TOp3_ArtflutePics();  
    var ds = response.value;     
    if(ds != null && typeof(ds) == "object" && ds.Tables != null)
    {   
        if(ds.Tables[0].Rows.length>0)
        {                          
            if(ds.Tables[0].Rows[0].IMGPATH != null)
            {
                if(document.getElementById("imgHand1"))
                {
					pic1= new Image(72,72); 
					pic1.src=ds.Tables[0].Rows[0].IMGPATH; 
                     document.getElementById("imgHand1").src = pic1.src;
                     isHandpicked=1;
                }
            }  
			if(ds.Tables[1].Rows[0].Artists != null)
            {
                if(document.getElementById("spanArtistsCount"))
                {
                    document.getElementById("spanArtistsCount").innerHTML = ds.Tables[1].Rows[0].Artists;
                }
            }
            if(ds.Tables[2].Rows[0].Artworks != null)
            {
                if(document.getElementById("spnArtsCount"))
                {
                    document.getElementById("spnArtsCount").innerHTML = ds.Tables[2].Rows[0].Artworks;
                }
            }
            if(ds.Tables[3].Rows.length>0)
            {
		
                if(ds.Tables[3].Rows[0].Name != null)
                {
		    
                    if(document.getElementById("spnName"))
                    {
			
                        document.getElementById("spnName").innerHTML = ds.Tables[3].Rows[0].Name;
                    }
                }
                else if(ds.Tables[3].Rows[0].Name == null || ds.Tables[3].Rows[0].Name=="")
                {
                    if(document.getElementById("spnName"))
                    {
                        document.getElementById("spnName").innerHTML = "Coming Soon";
                    }
                }                        
            }
            else
            {
                    if(document.getElementById("spnName"))
                    {
                        document.getElementById("spnName").innerHTML = "Coming Soon";
                    }
            }
        }
    }
}  
//-->