function addItemToList(sourceId,type,title,image,data){
    //forumlate link
    var link = addItemToListUrl(sourceId,type,title,image,data);
    
    //open modal
    
    stormModal.show({href:link,authLevel:4,height:400,width:500});
    
    //make cash money
}

function addItemToListUrl(sourceId,type,title,image,data){

    return "http://mylists.dell.com/us/addtolist.redir?sourceId=" + 
                encodeURIComponent(sourceId) + "&type=" + encodeURIComponent(type) + "&title=" + encodeURIComponent(title) + "&image=" + encodeURIComponent(image) + "&data=" + encodeURIComponent(data) ;
}
