/* [nodename, id, name, navigationtext, href, isnavigation, childs[], templatename] */

function jdecode(s) {
    s = s.replace(/\+/g, "%20")
    return unescape(s);
}

var POS_NODENAME=0;
var POS_ID=1;
var POS_NAME=2;
var POS_NAVIGATIONTEXT=3;
var POS_HREF=4;
var POS_ISNAVIGATION=5;
var POS_CHILDS=6;
var POS_TEMPLATENAME=7;
var theSitetree=[ 
	['PAGE','4598',jdecode('Presentaci%C3%B3n'),jdecode(''),'/4598.html','true',[],''],
	['PAGE','15922',jdecode('Productos'),jdecode(''),'/15922/index.html','true',[ 
		['PAGE','4957',jdecode('CAVE+%3A+Ci4D'),jdecode(''),'/15922/4957.html','true',[],''],
		['PAGE','15680',jdecode('Gira+o+RoadShow+3D'),jdecode(''),'/15922/15680.html','true',[],'']
	],''],
	['PAGE','5703',jdecode('Servicios'),jdecode(''),'/5703.html','true',[],''],
	['PAGE','5038',jdecode('Partners'),jdecode(''),'/5038.html','true',[],''],
	['PAGE','10703',jdecode('EVENTOS'),jdecode(''),'/10703/index.html','true',[ 
		['PAGE','18401',jdecode('Semana+de+la+Ciencia+Oviedo'),jdecode(''),'/10703/18401.html','true',[],''],
		['PAGE','15317',jdecode('Gira+Madrid.+Tu+Mundo'),jdecode(''),'/10703/15317.html','true',[],''],
		['PAGE','13930',jdecode('Exp.+Innovaci%C3%B3n+Tecnol%C3%B3gica'),jdecode(''),'/10703/13930.html','true',[],''],
		['PAGE','13903',jdecode('FITUR+2007'),jdecode(''),'/10703/13903.html','true',[],''],
		['PAGE','10730',jdecode('Madrid+por+la+ciencia'),jdecode(''),'/10703/10730.html','true',[],''],
		['PAGE','11493',jdecode('SEMINARIO+3D'),jdecode(''),'/10703/11493.html','true',[],''],
		['PAGE','6245',jdecode('MalagARTE'),jdecode(''),'/10703/6245.html','true',[],'']
	],''],
	['PAGE','12703',jdecode('PRENSA+.+NOTICIAS'),jdecode(''),'/12703.html','true',[],''],
	['PAGE','5325',jdecode('Cont%C3%A1ctenos'),jdecode(''),'/5325.html','true',[],'']];
var siteelementCount=16;
theSitetree.topTemplateName='Movement';
theSitetree.paletteFamily='333F65';
theSitetree.keyvisualId='1742';
theSitetree.keyvisualName='ebusiness2.jpg';
theSitetree.fontsetId='294';
theSitetree.graphicsetId='355';
theSitetree.contentColor='DDDDDD';
theSitetree.contentBGColor='333F65';
var theTemplate={
				name: 			'Movement',
				paletteFamily: 	'333F65',
				keyvisualId: 	'1742',
				keyvisualName: 	'ebusiness2.jpg',
				fontsetId: 		'294',
				graphicsetId: 	'355',
				contentColor: 	'DDDDDD',
				contentBGColor: '333F65',
				hasFlashNavigation: 'false',
				hasFlashLogo: 	'false',
				hasFlashCompanyname: 'false',
				hasFlashElements: 'false',
				hasCompanyname: 'false',
				a_color: 		'333F65',
				b_color: 		'040507',
				c_color: 		'FFFFFF',
				d_color: 		'FFFFFF',
				e_color: 		'FFFFFF',
				f_color: 		'FFFFFF',
				hasCustomLogo: 	'true',
				contentFontFace:'Arial, Helvetica, sans-serif',
				contentFontSize:'12'
			  };
var webappMappings = {};
webappMappings['1006']={
webappId:    '1006',
documentId:  '4598',
internalId:  '1006',
customField: '1006'
};
webappMappings['5000']={
webappId:    '5000',
documentId:  '4598',
internalId:  '',
customField: '20060307-154851'
};
webappMappings['5000']={
webappId:    '5000',
documentId:  '10703',
internalId:  '',
customField: '20070424-134938'
};
webappMappings['5000']={
webappId:    '5000',
documentId:  '18401',
internalId:  '',
customField: '20071121-150630'
};
var canonHostname = 'wsc01a.arsys.es';
var accountId     = 'Aas010INE7IK';
var companyName   = 'Impact4D+Virtual+Reality';
var htmlTitle	  = 'Sistemas+de+Realidad+Virtual+3d';
var metaKeywords  = 'realidad+virtual%2C+virtual+reality%2C+3D%2C+CAVE%2C+eventos+3D%2C+proyecci%EF%BF%BDn+3D%2C+contenidos+3D';
var metaContents  = 'Sistema+de+realidad+virtual+en+3D+.+Producci%EF%BF%BDn+de+eventos+y+contenidos+de+ralidad+Virtual+en+3D.';
					                                                                    
theSitetree.getById = function(id, ar) {												
							if (typeof(ar) == 'undefined')                              
								ar = this;                                              
							for (var i=0; i < ar.length; i++) {                         
								if (ar[i][POS_ID] == id)                                
									return ar[i];                                       
								if (ar[i][POS_CHILDS].length > 0) {                     
									var result=this.getById(id, ar[i][POS_CHILDS]);     
									if (result != null)                                 
										return result;                                  
								}									                    
							}                                                           
							return null;                                                
					  };                                                                
					                                                                    
theSitetree.getParentById = function(id, ar) {                                        
						if (typeof(ar) == 'undefined')                              	
							ar = this;                                             		
						for (var i=0; i < ar.length; i++) {                        		
							for (var j = 0; j < ar[i][POS_CHILDS].length; j++) {   		
								if (ar[i][POS_CHILDS][j][POS_ID] == id) {          		
									// child found                                 		
									return ar[i];                                  		
								}                                                  		
								var result=this.getParentById(id, ar[i][POS_CHILDS]);   
								if (result != null)                                 	
									return result;                                  	
							}                                                       	
						}                                                           	
						return null;                                                	
					 }								                                    
					                                                                    
theSitetree.getName = function(id) {                                                  
						var elem = this.getById(id);                                    
						if (elem != null)                                               
							return elem[POS_NAME];                                      
						return null;	                                                
					  };			                                                    
theSitetree.getNavigationText = function(id) {                                        
						var elem = this.getById(id);                                    
						if (elem != null)                                               
							return elem[POS_NAVIGATIONTEXT];                            
						return null;	                                                
					  };			                                                    
					                                                                    
theSitetree.getHREF = function(id) {                                                  
						var elem = this.getById(id);                                    
						if (elem != null)                                               
							return elem[POS_HREF];                                      
						return null;	                                                
					  };			                                                    
					                                                                    
theSitetree.getIsNavigation = function(id) {                                          
						var elem = this.getById(id);                                    
						if (elem != null)                                               
							return elem[POS_ISNAVIGATION];                              
						return null;	                                                
					  };			                                                    
					                                                                    
theSitetree.getTemplateName = function(id, lastTemplateName, ar) {             		
	                                                                                 
	if (typeof(lastTemplateName) == 'undefined')                                     
		lastTemplateName = this.topTemplateName;	                                 
	if (typeof(ar) == 'undefined')                                                   
		ar = this;                                                                   
		                                                                             
	for (var i=0; i < ar.length; i++) {                                              
		var actTemplateName = ar[i][POS_TEMPLATENAME];                               
		                                                                             
		if (actTemplateName == '')                                                   
			actTemplateName = lastTemplateName;		                                 
		                                                                             
		if (ar[i][POS_ID] == id) {                                			         
			return actTemplateName;                                                  
		}	                                                                         
		                                                                             
		if (ar[i][POS_CHILDS].length > 0) {                                          
			var result=this.getTemplateName(id, actTemplateName, ar[i][POS_CHILDS]); 
			if (result != null)                                                      
				return result;                                                       
		}									                                         
	}                                                                                
	return null;                                                                     
	};                                                                               
/* EOF */					                                                            

