// pdsa/data/pdsa_tool_data.js
    "id" : "t-pd-k313",

// pdsa/index.xhmtl
    <script src="../vleapi.1.js"></script>
        
// pdsa/css/pdsa_tool.css
	#root{
	    background-color: #CCCCCC;	    
	}
	
// pdsa/scripts/lib.js
     libs.prototype.setFrameHeight = function(frameHeight) {
     	var parent_iframe = window.parent.frameElement,
     	    surrounding_boxes = 250;
        
         if (!!window.frameElement){
             window.frameElement.setAttribute("height",frameHeight);
             
             if (parent_iframe !== null) {
             	parent_iframe.setAttribute("height", frameHeight + surrounding_boxes);             	
             }   	    	
         }
        
      };	
	        
     