﻿//Factory to generate icon path

function IconPathFactory(){
    this.getPath = getPath
    
    
    
    //iconSoure = VMRandomIcon.ashx" or the title of the pins
    // value = themeValue of the pin 
    //type = RANDOM or SQUARE
    function getPath(type, value){
        //prompt ("", "AspNet/VMIcon.ashx?VALUE=" + value + "&TYPE=" + type + "&SIZE=12");
        return "AspNet/VMIcon.ashx?VALUE=" + value + "&TYPE=" + type + "&SIZE=12";
    }
        
}
