Framework.Modules.SEOIndexedPagesTree = function(){
	this.groupId = '4';
	
    this.getCountryFlag=function(i){    	
    	return '<td style="width:20px"><img src="images/vtview/country/'+this.searchEngines[i].country_flag+'.png" height="16px"/></td>';
    };    
    this.getObjectName=function(){	 
		return "seoIndexedPagesTree";  
	};				
 			
   	this.getCountryFlagForAddSearchEngine=function(searchEngine){    	
    	return '<td style="width:20px"><img src="images/vtview/country/'+searchEngine.country_flag+'.png" height="16px"/></td>';
    };	
    
    this.getLocalesCountryFlag=function(locale){		
		return '<td class="left"><img src="images/vtview/country/'+locale.country_flag+'.png" height="16px"/></td>';
	};	
	
	this.getFormLabel=function(){
		return '<span class="formLabel" style="float: left;">Name: </span><input type="hidden" name="type" value="' + SEO_TYPE_INDEXED_PAGES + '"/> <input type="hidden" name="userTagType" value="' + SEO_TYPE_INDEXED_PAGES + '"/>';
	};	
				
	
	this.getShowHelpInfo=function(){
		return "New Indexed Pages Monitor";
	};
				
	this.getSEOUrl=function(){
		return Framework.seoRankingURL;		
	};
	
	this.getCheckLegend=function(){
		return "Search Engine";		
	};					
		
	this.getUserTagType=function(formData){
		return formData.userTagType + "/";
	};		
	
	this.getModuleName=function(){
		return "SEOIndexedPages";
	};	

}
Framework.Modules.SEOIndexedPagesTree.prototype=new Framework.Modules.SEOUrlTree();
