Framework.Modules.SEOPageRankTree = function(){
	this.groupId = '';
	
    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 "seoPageRankTree";  
	};						
    
    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_PAGE_RANK + '"/>';
	};   		
   
    this.getShowHelpInfo=function(){
		return "New Page Rank Monitor";
	};
	
	this.getCheckLegend=function(){
		return "Search Engine";		
	};				
					
	
	this.getSEOUrl=function(){
		return Framework.seoPageRankURL;		
	};
	
	this.getUserTagType=function(formData){
		return "";
	};
	
	this.getModuleName=function(){
		return "SEOPageRank";
	};		

}
Framework.Modules.SEOPageRankTree.prototype=new Framework.Modules.SEOUrlTree();
