﻿function navigateTo(identifier) {
	switch(identifier) {
		case 'registration':
			top.window.location.href = '../../../../index.php?id=111';
			break;
			
		case 'members_area':
			top.window.location.href = '../../../../index.php?id=113';
			break;
		
		case 'admin_panel':
			top.window.location.href = '../../../../index.php?id=136';
			break;
			
		case 'password':
			top.window.location.href = '../../../../index.php?id=167';
			break;
			
		case 'home':
			top.window.location.href = '../../../../index.php?id=104';
			break;		
		
		case 'members_news':
			top.window.location.href = '../../../../index.php?id=196';
			break;		
		
		case 'project_stats':
			top.window.location.href = '../../../../index.php?id=206';		
			break;
			
		case 'member_stats':
			top.window.location.href = '../../../../index.php?id=205';		
			break;
			
		case 'country_stats':
			top.window.location.href = '../../../../index.php?id=192';		
			break;

		case 'search_all':
			document.getElementById('orgname').value = '';
			document.getElementById('orgtype').selectedIndex = 0;
			document.getElementById('locality').selectedIndex = 0;
			document.getElementById('orgsize').selectedIndex = 0;
			document.getElementById('organisation_active.country').selectedIndex = 0;
			document.getElementById('organisation_active.area').selectedIndex = 0;
			document.getElementById('organisation_active.region').selectedIndex = 0;
			break;
			
		default: break;
	}
}


